diff options
author | Brendan Gannon <bgannon@stsci.edu> | 2021-08-12 10:31:46 -0400 |
---|---|---|
committer | Brendan Gannon <bgannon@stsci.edu> | 2021-08-12 10:31:46 -0400 |
commit | 0779f18950c08afca7b51ad7e418763666cba071 (patch) | |
tree | 7881f5b28b77b1b1f78f1069e06de23619710277 | |
download | astroconda-releases-testing-init.tar.gz |
initial commitinit
847 files changed, 89360 insertions, 0 deletions
diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..7dd1576 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,29 @@ +Copyright (C) 2010 Association of Universities for Research in Astronomy (AURA) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + 3. The name of AURA and its representatives may not be used to + endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY AURA ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL AURA BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE +USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + diff --git a/README.md b/README.md new file mode 100644 index 0000000..7a8ffc0 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +**This repository is used for preparing and recording deliveries.** + +The release notes for each build are tracked and stored with the AstroConda environment spec file used to recreate environments delivered to various pipeline teams. + + +## Installing a fresh pipeline environment + +- Install Miniconda3 +``` + $ wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh + $ bash Miniconda3-latest-Linux-x86_64.sh + $ export PATH=$HOME/miniconda3/bin:$PATH +``` + +- Installing via our servers: +``` +$ conda create -n %NAME_%BUILD --file http://ssb.stsci.edu/releases/%NAME/%BUILD/%NAME%-BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt +``` + +- Installing via local filesystem: +``` +$ git clone https://github.com/astroconda/astroconda-releases +$ conda create -n %NAME_%BUILD --file astroconda-releases/%NAME/%BUILD/%NAME-%BUILD-%PLATFORM-%PYTHON_VERSION.%ITERATION.txt +``` + +## Note + +A fresh installation of Miniconda3 is not required for each release. The method described above allows for multiple, entirely segregated pipeline installations. diff --git a/caldp/20200323/README.md b/caldp/20200323/README.md new file mode 100644 index 0000000..705979a --- /dev/null +++ b/caldp/20200323/README.md @@ -0,0 +1,63 @@ +NOTE: This release continues in using some recently introduced minor changes in installation +procedures. Please see below for details. + +# Installing + +Currently, conda is required to manage installation of the enviornment. A fresh +installation of Anaconda3 or Miniconda3 is not required for each HCALDP release, +however. An existing conda installation may be used. The method described here +allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are now taken directly from PyPI or development repositories as +needed, so conda's ability to install hybrid conda/pip environments from a YAML +specification is used. This requires first downloading the specification file +and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment + +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20200323/latest-linux.yml +$ conda env create -n caldp_20200323 --file latest-linux.yml +``` + + +### Activate the pipeline environment + +``` +$ source activate caldp_20200323 +``` + +Each new delivery iteration of the calibration environment will need to be +installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.12-Linux-x86_64.sh +$ bash Miniconda3-4.7.12-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + diff --git a/caldp/20200323/caldp_20200323_cos_linux_py36_final.yml b/caldp/20200323/caldp_20200323_cos_linux_py36_final.yml new file mode 100644 index 0000000..bd03f8a --- /dev/null +++ b/caldp/20200323/caldp_20200323_cos_linux_py36_final.yml @@ -0,0 +1,105 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- _libgcc_mutex=0.1=main +- ca-certificates=2020.1.1=0 +- certifi=2019.11.28=py36_1 +- cfitsio=3.470=0 +- fitsverify=4.18=12 +- hstcal=2.3.1=5 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20181209=hc058e9b_0 +- libffi=3.2.1=hd88cf55_4 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_0 +- openssl=1.1.1e=h7b6447c_0 +- pip=20.0.2=py36_1 +- python=3.6.10=h0371630_0 +- readline=7.0=h7b6447c_5 +- setuptools=46.1.1=py36_0 +- sqlite=3.31.1=h7b6447c_0 +- tk=8.6.8=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h14c3975_4 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.0.0 + - alabaster==0.7.12 + - astropy==4.0 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.8.2 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cryptography==2.8 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.5.0 + - jeepney==0.4.3 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.1.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.0.0 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.6 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - secretstorage==3.1.2 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==2.4.4 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200323/caldp_20200323_cos_osx_py36_final.yml b/caldp/20200323/caldp_20200323_cos_osx_py36_final.yml new file mode 100644 index 0000000..d4472e3 --- /dev/null +++ b/caldp/20200323/caldp_20200323_cos_osx_py36_final.yml @@ -0,0 +1,99 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- ca-certificates=2020.1.1=0 +- certifi=2019.11.28=py36_1 +- cfitsio=3.470=0 +- fitsverify=4.18=12 +- hstcal=2.3.1=5 +- libcxx=4.0.1=hcfea43d_1 +- libcxxabi=4.0.1=hcfea43d_1 +- libedit=3.1.20181209=hb402a30_0 +- libffi=3.2.1=h475c297_4 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_0 +- openssl=1.1.1e=h1de35cc_0 +- pip=20.0.2=py36_1 +- python=3.6.10=h359304d_0 +- readline=7.0=h1de35cc_5 +- setuptools=46.1.1=py36_0 +- sqlite=3.31.1=ha441bb4_0 +- tk=8.6.8=ha441bb4_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h1de35cc_4 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.0.0 + - alabaster==0.7.12 + - astropy==4.0 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.8.2 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.5.0 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.1.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.0.0 + - pygments==2.6.1 + - pyparsing==2.4.6 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==2.4.4 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200323/dev/caldp_20200323_cos_linux_py36_rc1.yml b/caldp/20200323/dev/caldp_20200323_cos_linux_py36_rc1.yml new file mode 100644 index 0000000..a215f09 --- /dev/null +++ b/caldp/20200323/dev/caldp_20200323_cos_linux_py36_rc1.yml @@ -0,0 +1,105 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- _libgcc_mutex=0.1=main +- ca-certificates=2020.1.1=0 +- certifi=2019.11.28=py36_1 +- cfitsio=3.470=0 +- fitsverify=4.18=12 +- hstcal=2.3.1=5 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20181209=hc058e9b_0 +- libffi=3.2.1=hd88cf55_4 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_0 +- openssl=1.1.1e=h7b6447c_0 +- pip=20.0.2=py36_1 +- python=3.6.10=h0371630_0 +- readline=7.0=h7b6447c_5 +- setuptools=46.1.1=py36_0 +- sqlite=3.31.1=h7b6447c_0 +- tk=8.6.8=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h14c3975_4 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.0.0 + - alabaster==0.7.12 + - astropy==4.0 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.8.2 + - git+https://github.com/spacetelescope/calcos@3.3.9-rc1 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cryptography==2.8 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.5.0 + - jeepney==0.4.3 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.1.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.0.0 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.6 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - secretstorage==3.1.2 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==2.4.4 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200323/dev/caldp_20200323_cos_osx_py36_rc1.yml b/caldp/20200323/dev/caldp_20200323_cos_osx_py36_rc1.yml new file mode 100644 index 0000000..af795cb --- /dev/null +++ b/caldp/20200323/dev/caldp_20200323_cos_osx_py36_rc1.yml @@ -0,0 +1,99 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- ca-certificates=2020.1.1=0 +- certifi=2019.11.28=py36_1 +- cfitsio=3.470=0 +- fitsverify=4.18=12 +- hstcal=2.3.1=5 +- libcxx=4.0.1=hcfea43d_1 +- libcxxabi=4.0.1=hcfea43d_1 +- libedit=3.1.20181209=hb402a30_0 +- libffi=3.2.1=h475c297_4 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_0 +- openssl=1.1.1e=h1de35cc_0 +- pip=20.0.2=py36_1 +- python=3.6.10=h359304d_0 +- readline=7.0=h1de35cc_5 +- setuptools=46.1.1=py36_0 +- sqlite=3.31.1=ha441bb4_0 +- tk=8.6.8=ha441bb4_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h1de35cc_4 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.0.0 + - alabaster==0.7.12 + - astropy==4.0 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.8.2 + - git+https://github.com/spacetelescope/calcos@3.3.9-rc1 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.5.0 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.1.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.0.0 + - pygments==2.6.1 + - pyparsing==2.4.6 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==2.4.4 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200323/latest-linux.yml b/caldp/20200323/latest-linux.yml new file mode 100644 index 0000000..bd03f8a --- /dev/null +++ b/caldp/20200323/latest-linux.yml @@ -0,0 +1,105 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- _libgcc_mutex=0.1=main +- ca-certificates=2020.1.1=0 +- certifi=2019.11.28=py36_1 +- cfitsio=3.470=0 +- fitsverify=4.18=12 +- hstcal=2.3.1=5 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20181209=hc058e9b_0 +- libffi=3.2.1=hd88cf55_4 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_0 +- openssl=1.1.1e=h7b6447c_0 +- pip=20.0.2=py36_1 +- python=3.6.10=h0371630_0 +- readline=7.0=h7b6447c_5 +- setuptools=46.1.1=py36_0 +- sqlite=3.31.1=h7b6447c_0 +- tk=8.6.8=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h14c3975_4 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.0.0 + - alabaster==0.7.12 + - astropy==4.0 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.8.2 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cryptography==2.8 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.5.0 + - jeepney==0.4.3 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.1.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.0.0 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.6 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - secretstorage==3.1.2 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==2.4.4 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200323/latest-osx.yml b/caldp/20200323/latest-osx.yml new file mode 100644 index 0000000..d4472e3 --- /dev/null +++ b/caldp/20200323/latest-osx.yml @@ -0,0 +1,99 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- ca-certificates=2020.1.1=0 +- certifi=2019.11.28=py36_1 +- cfitsio=3.470=0 +- fitsverify=4.18=12 +- hstcal=2.3.1=5 +- libcxx=4.0.1=hcfea43d_1 +- libcxxabi=4.0.1=hcfea43d_1 +- libedit=3.1.20181209=hb402a30_0 +- libffi=3.2.1=h475c297_4 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_0 +- openssl=1.1.1e=h1de35cc_0 +- pip=20.0.2=py36_1 +- python=3.6.10=h359304d_0 +- readline=7.0=h1de35cc_5 +- setuptools=46.1.1=py36_0 +- sqlite=3.31.1=ha441bb4_0 +- tk=8.6.8=ha441bb4_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h1de35cc_4 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.0.0 + - alabaster==0.7.12 + - astropy==4.0 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.8.2 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.5.0 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.1.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.0.0 + - pygments==2.6.1 + - pyparsing==2.4.6 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==2.4.4 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200323/release_notes.md b/caldp/20200323/release_notes.md new file mode 100644 index 0000000..97d2d95 --- /dev/null +++ b/caldp/20200323/release_notes.md @@ -0,0 +1,4 @@ +# Release Notes + +* 2020/03/23 - Initial iteration +* 2020/04/01 - Final diff --git a/caldp/20200323/software_updates.md b/caldp/20200323/software_updates.md new file mode 100644 index 0000000..8335234 --- /dev/null +++ b/caldp/20200323/software_updates.md @@ -0,0 +1,3 @@ +# calcos version 3.3.9 + +This version of CALCOS is to be used with CRDS context 0771. diff --git a/caldp/20200421/CALDP_20200421_ACS_linux_py36_final.yml b/caldp/20200421/CALDP_20200421_ACS_linux_py36_final.yml new file mode 100644 index 0000000..4ab9d03 --- /dev/null +++ b/caldp/20200421/CALDP_20200421_ACS_linux_py36_final.yml @@ -0,0 +1,107 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.2_0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20181209=hc058e9b_0 +- libffi=3.2.1=hd88cf55_4 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_0 +- openssl=1.1.1f=h7b6447c_0 +- pip=20.0.2=py36_1 +- python=3.6.10=hcf32534_1 +- readline=8.0=h7b6447c_0 +- setuptools=46.1.3=py36_0 +- sqlite=3.31.1=h7b6447c_0 +- tk=8.6.8=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h14c3975_4 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.1.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.0 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cryptography==2.9 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jeepney==0.4.3 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.2.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.1 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - secretstorage==3.1.2 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==3.0.0 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200421/CALDP_20200421_ACS_macos_py36_final.yml b/caldp/20200421/CALDP_20200421_ACS_macos_py36_final.yml new file mode 100644 index 0000000..d69aba2 --- /dev/null +++ b/caldp/20200421/CALDP_20200421_ACS_macos_py36_final.yml @@ -0,0 +1,100 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.2_0 +- libcxx=4.0.1=hcfea43d_1 +- libcxxabi=4.0.1=hcfea43d_1 +- libedit=3.1.20181209=hb402a30_0 +- libffi=3.2.1=h475c297_4 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_0 +- openssl=1.1.1f=h1de35cc_0 +- pip=20.0.2=py36_1 +- python=3.6.10=hc70fcce_1 +- readline=8.0=h1de35cc_0 +- setuptools=46.1.3=py36_0 +- sqlite=3.31.1=ha441bb4_0 +- tk=8.6.8=ha441bb4_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h1de35cc_4 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.1.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.0 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.2.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.1 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==3.0.0 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200421/README.md b/caldp/20200421/README.md new file mode 100644 index 0000000..e38a20b --- /dev/null +++ b/caldp/20200421/README.md @@ -0,0 +1,62 @@ +During testing, the codename of this environment delivery was 'darktime'. + +# Installing + +Currently, conda is required to manage installation of the enviornment. A fresh +installation of Anaconda3 or Miniconda3 is not required for each HCALDP release, +however. An existing conda installation may be used. The method described here +allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are now taken directly from PyPI or development repositories as +needed, so conda's ability to install hybrid conda/pip environments from a YAML +specification is used. This requires first downloading the specification file +and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment + +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20200421/latest-linux.yml +$ conda env create -n caldp_20200421 --file latest-linux.yml +``` + + +### Activate the pipeline environment + +``` +$ source activate caldp_20200421 +``` + +Each new delivery iteration of the calibration environment will need to be +installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + diff --git a/caldp/20200421/dev/CALDP_darktime_ACS_linux_py36_rc1.yml b/caldp/20200421/dev/CALDP_darktime_ACS_linux_py36_rc1.yml new file mode 100644 index 0000000..c6b2536 --- /dev/null +++ b/caldp/20200421/dev/CALDP_darktime_ACS_linux_py36_rc1.yml @@ -0,0 +1,108 @@ +channels: +- https://ssb.stsci.edu/astroconda-staging +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.2rc1.dev0+ga822901f=5 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20181209=hc058e9b_0 +- libffi=3.2.1=hd88cf55_4 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_0 +- openssl=1.1.1f=h7b6447c_0 +- pip=20.0.2=py36_1 +- python=3.6.10=hcf32534_1 +- readline=8.0=h7b6447c_0 +- setuptools=46.1.3=py36_0 +- sqlite=3.31.1=h7b6447c_0 +- tk=8.6.8=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h14c3975_4 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.1.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.0 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cryptography==2.9 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jeepney==0.4.3 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.2.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.1 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - secretstorage==3.1.2 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==3.0.0 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200421/dev/CALDP_darktime_ACS_macos_py36_rc1.yml b/caldp/20200421/dev/CALDP_darktime_ACS_macos_py36_rc1.yml new file mode 100644 index 0000000..d5ab132 --- /dev/null +++ b/caldp/20200421/dev/CALDP_darktime_ACS_macos_py36_rc1.yml @@ -0,0 +1,101 @@ +channels: +- https://ssb.stsci.edu/astroconda-staging +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.2rc1.dev0+ga822901f=5 +- libcxx=4.0.1=hcfea43d_1 +- libcxxabi=4.0.1=hcfea43d_1 +- libedit=3.1.20181209=hb402a30_0 +- libffi=3.2.1=h475c297_4 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_0 +- openssl=1.1.1f=h1de35cc_0 +- pip=20.0.2=py36_1 +- python=3.6.10=hc70fcce_1 +- readline=8.0=h1de35cc_0 +- setuptools=46.1.3=py36_0 +- sqlite=3.31.1=ha441bb4_0 +- tk=8.6.8=ha441bb4_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h1de35cc_4 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.1.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.0 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.2.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.1 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==3.0.0 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200421/latest-linux.yml b/caldp/20200421/latest-linux.yml new file mode 100644 index 0000000..4ab9d03 --- /dev/null +++ b/caldp/20200421/latest-linux.yml @@ -0,0 +1,107 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.2_0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20181209=hc058e9b_0 +- libffi=3.2.1=hd88cf55_4 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_0 +- openssl=1.1.1f=h7b6447c_0 +- pip=20.0.2=py36_1 +- python=3.6.10=hcf32534_1 +- readline=8.0=h7b6447c_0 +- setuptools=46.1.3=py36_0 +- sqlite=3.31.1=h7b6447c_0 +- tk=8.6.8=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h14c3975_4 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.1.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.0 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cryptography==2.9 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jeepney==0.4.3 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.2.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.1 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - secretstorage==3.1.2 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==3.0.0 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200421/latest-macos.yml b/caldp/20200421/latest-macos.yml new file mode 100644 index 0000000..d69aba2 --- /dev/null +++ b/caldp/20200421/latest-macos.yml @@ -0,0 +1,100 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.2_0 +- libcxx=4.0.1=hcfea43d_1 +- libcxxabi=4.0.1=hcfea43d_1 +- libedit=3.1.20181209=hb402a30_0 +- libffi=3.2.1=h475c297_4 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_0 +- openssl=1.1.1f=h1de35cc_0 +- pip=20.0.2=py36_1 +- python=3.6.10=hc70fcce_1 +- readline=8.0=h1de35cc_0 +- setuptools=46.1.3=py36_0 +- sqlite=3.31.1=ha441bb4_0 +- tk=8.6.8=ha441bb4_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h1de35cc_4 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.1.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.0 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.2.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.1 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==3.0.0 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200421/latest-osx.yml b/caldp/20200421/latest-osx.yml new file mode 100644 index 0000000..d69aba2 --- /dev/null +++ b/caldp/20200421/latest-osx.yml @@ -0,0 +1,100 @@ +channels: +- https://ssb.stsci.edu/astroconda +- defaults +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.2_0 +- libcxx=4.0.1=hcfea43d_1 +- libcxxabi=4.0.1=hcfea43d_1 +- libedit=3.1.20181209=hb402a30_0 +- libffi=3.2.1=h475c297_4 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_0 +- openssl=1.1.1f=h1de35cc_0 +- pip=20.0.2=py36_1 +- python=3.6.10=hc70fcce_1 +- readline=8.0=h1de35cc_0 +- setuptools=46.1.3=py36_0 +- sqlite=3.31.1=ha441bb4_0 +- tk=8.6.8=ha441bb4_0 +- wheel=0.34.2=py36_0 +- xz=5.2.4=h1de35cc_4 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.1.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.0 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.4.1.3 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jinja2==2.11.1 + - keyring==21.2.0 + - kiwisolver==1.2.0 + - lxml==4.5.0 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.2 + - numpydoc==0.9.2 + - packaging==20.3 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.1 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2019.3 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.16.2 + - scipy==1.4.1 + - six==1.14.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0 + - spherical-geometry==1.2.18 + - sphinx==3.0.0 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.4 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tweakwcs==0.6.1 + - urllib3==1.25.8 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200421/release_notes.md b/caldp/20200421/release_notes.md new file mode 100644 index 0000000..01fcf49 --- /dev/null +++ b/caldp/20200421/release_notes.md @@ -0,0 +1,4 @@ +# Release Notes + +* 2020/04/21 - Final +* 2020/04/06 - Initial iteration diff --git a/caldp/20200421/software_updates.md b/caldp/20200421/software_updates.md new file mode 100644 index 0000000..52fab36 --- /dev/null +++ b/caldp/20200421/software_updates.md @@ -0,0 +1,17 @@ +# HSTCAL Version 2.3.2 + +The following updates, specified in separate sections for each instrument, have been included with this release. This release is presented as [HSTDP-2020.6.2 milestones]. + +## HSTCAL package updates + +## ACS + +- CALACS updated to Version 10.2.2 + +- In the DARKCORR step of CALACS, the value of the DARKTIME keyword is used to account for time that dark current accumulates. It has been determined that depending upon the type of WFC observation (i.e., full frame or subarray, post-flash or no post-flash) there is an additional correction needed. The additional correction values need to be read from updated CCDTAB reference files, and correspondingly, the DARKCORR algorithm has been updated to accommodate new logic for applying the correction. +Issue #326/PR #467. + + +- [x] Affects old data +- [x] Users should re-retrieve affected datasets from the archive +- [x] Updated reference files delivered by science team diff --git a/caldp/20200611/CALDP_20200611_CAL_linux_py36_final.yml b/caldp/20200611/CALDP_20200611_CAL_linux_py36_final.yml new file mode 100644 index 0000000..ccb1d79 --- /dev/null +++ b/caldp/20200611/CALDP_20200611_CAL_linux_py36_final.yml @@ -0,0 +1,113 @@ +# delivery_name: CALDP_20200611_CAL_final +# creation_time: Thu Jun 11 21:47:22 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.3=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20181209=hc058e9b_0 +- libffi=3.3=he6710b0_1 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.0.2=py36_3 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=46.4.0=py36_0 +- sqlite=3.31.1=h62c20be_1 +- tk=8.6.8=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imagecodecs==2020.2.18 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.4 + - numpydoc==0.9.2 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.17.2 + - scipy==1.4.1 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.0.3 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.5.11 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200611/CALDP_20200611_CAL_macos_py36_final.yml b/caldp/20200611/CALDP_20200611_CAL_macos_py36_final.yml new file mode 100644 index 0000000..2568acc --- /dev/null +++ b/caldp/20200611/CALDP_20200611_CAL_macos_py36_final.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_20200611_CAL_final +# creation_time: Thu Jun 11 21:47:55 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.3=0 +- libcxx=10.0.0=1 +- libedit=3.1.20181209=hb402a30_0 +- libffi=3.3=h0a44026_1 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.0.2=py36_3 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=46.4.0=py36_0 +- sqlite=3.31.1=h5c1f38d_1 +- tk=8.6.8=ha441bb4_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imagecodecs==2020.2.18 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.4 + - numpydoc==0.9.2 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.17.2 + - scipy==1.4.1 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.0.3 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.5.11 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200611/README.md b/caldp/20200611/README.md new file mode 100644 index 0000000..0d00d66 --- /dev/null +++ b/caldp/20200611/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20200611/latest-linux.yml +$ conda env create -n caldp_20200611 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20200611 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/20200611/dev/CALDP_atodsat_CAL_linux_py36_rc1.yml b/caldp/20200611/dev/CALDP_atodsat_CAL_linux_py36_rc1.yml new file mode 100644 index 0000000..4629c91 --- /dev/null +++ b/caldp/20200611/dev/CALDP_atodsat_CAL_linux_py36_rc1.yml @@ -0,0 +1,111 @@ +# delivery_name: CALDP_atodsat_CAL_rc1 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.3rc1.dev0+gbdad2661=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20181209=hc058e9b_0 +- libffi=3.3=he6710b0_1 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.0.2=py36_3 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=46.4.0=py36_0 +- sqlite=3.31.1=h62c20be_1 +- tk=8.6.8=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imagecodecs==2020.2.18 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.4 + - numpydoc==0.9.2 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.17.2 + - scipy==1.4.1 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.0.3 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.5.11 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200611/dev/CALDP_atodsat_CAL_macos_py36_rc1.yml b/caldp/20200611/dev/CALDP_atodsat_CAL_macos_py36_rc1.yml new file mode 100644 index 0000000..e8b7e73 --- /dev/null +++ b/caldp/20200611/dev/CALDP_atodsat_CAL_macos_py36_rc1.yml @@ -0,0 +1,103 @@ +# delivery_name: CALDP_atodsat_CAL_rc1 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.3rc1.dev0+gbdad2661=0 +- libcxx=10.0.0=1 +- libedit=3.1.20181209=hb402a30_0 +- libffi=3.3=h0a44026_1 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.0.2=py36_3 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=46.4.0=py36_0 +- sqlite=3.31.1=h5c1f38d_1 +- tk=8.6.8=ha441bb4_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imagecodecs==2020.2.18 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.4 + - numpydoc==0.9.2 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.17.2 + - scipy==1.4.1 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.0.3 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.5.11 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200611/latest-linux.yml b/caldp/20200611/latest-linux.yml new file mode 100644 index 0000000..ccb1d79 --- /dev/null +++ b/caldp/20200611/latest-linux.yml @@ -0,0 +1,113 @@ +# delivery_name: CALDP_20200611_CAL_final +# creation_time: Thu Jun 11 21:47:22 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.3=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20181209=hc058e9b_0 +- libffi=3.3=he6710b0_1 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.0.2=py36_3 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=46.4.0=py36_0 +- sqlite=3.31.1=h62c20be_1 +- tk=8.6.8=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imagecodecs==2020.2.18 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.4 + - numpydoc==0.9.2 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.17.2 + - scipy==1.4.1 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.0.3 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.5.11 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200611/latest-macos.yml b/caldp/20200611/latest-macos.yml new file mode 100644 index 0000000..2568acc --- /dev/null +++ b/caldp/20200611/latest-macos.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_20200611_CAL_final +# creation_time: Thu Jun 11 21:47:55 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.4.5.1=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.3.3=0 +- libcxx=10.0.0=1 +- libedit=3.1.20181209=hb402a30_0 +- libffi=3.3=h0a44026_1 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.0.2=py36_3 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=46.4.0=py36_0 +- sqlite=3.31.1=h5c1f38d_1 +- tk=8.6.8=ha441bb4_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.0.1 + - idna==2.9 + - imagecodecs==2020.2.18 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.0 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.1 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.18.4 + - numpydoc==0.9.2 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.23.0 + - scikit-image==0.17.2 + - scipy==1.4.1 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.0.3 + - sphinx-rtd-theme==0.4.3 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.5.11 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200611/release_notes.md b/caldp/20200611/release_notes.md new file mode 100644 index 0000000..69264f7 --- /dev/null +++ b/caldp/20200611/release_notes.md @@ -0,0 +1,4 @@ +## 2020/6/11 - CALDP_20200611_CAL_final + +## 2020/5/22 - CALDP_atodsat_CAL_rc1 +### hstcal 2.3.3rc1 diff --git a/caldp/20200708/CALDP_20200708_CAL_linux_py36_final.yml b/caldp/20200708/CALDP_20200708_CAL_linux_py36_final.yml new file mode 100644 index 0000000..cf5a86d --- /dev/null +++ b/caldp/20200708/CALDP_20200708_CAL_linux_py36_final.yml @@ -0,0 +1,112 @@ +# delivery_name: CALDP_20200708_CAL_final +# creation_time: Wed Jul 8 14:39:25 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h7b6447c_0 +- libffi=3.3=he6710b0_1 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.1.1=py36_1 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=47.3.1=py36_0 +- sqlite=3.32.3=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.1 + - jeepney==0.4.3 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.19.0 + - numpydoc==1.0.0 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.0 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.1 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.6.3 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200708/CALDP_20200708_CAL_macos_py36_final.yml b/caldp/20200708/CALDP_20200708_CAL_macos_py36_final.yml new file mode 100644 index 0000000..0491801 --- /dev/null +++ b/caldp/20200708/CALDP_20200708_CAL_macos_py36_final.yml @@ -0,0 +1,104 @@ +# delivery_name: CALDP_20200708_CAL_final +# creation_time: Wed Jul 8 14:39:54 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=haf1e3a3_0 +- libffi=3.3=h0a44026_1 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.1.1=py36_1 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=47.3.1=py36_0 +- sqlite=3.32.3=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.1 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.19.0 + - numpydoc==1.0.0 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.0 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.1 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.6.3 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200708/README.md b/caldp/20200708/README.md new file mode 100644 index 0000000..11fdae5 --- /dev/null +++ b/caldp/20200708/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20200708/latest-linux.yml +$ conda env create -n caldp_20200708 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20200708 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/20200708/dev/CALDP_copyleft_CAL_linux_py36_rc1.yml b/caldp/20200708/dev/CALDP_copyleft_CAL_linux_py36_rc1.yml new file mode 100644 index 0000000..0a01261 --- /dev/null +++ b/caldp/20200708/dev/CALDP_copyleft_CAL_linux_py36_rc1.yml @@ -0,0 +1,113 @@ +# delivery_name: CALDP_copyleft_CAL_rc1 +# creation_time: Fri Jun 26 09:25:20 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0rc1.dev0+g9bcc9850=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h7b6447c_0 +- libffi=3.3=he6710b0_1 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.1.1=py36_1 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=47.3.1=py36_0 +- sqlite=3.32.3=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.1 + - jeepney==0.4.3 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.19.0 + - numpydoc==1.0.0 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.0 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.1 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.6.3 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200708/dev/CALDP_copyleft_CAL_linux_py36_rc2.yml b/caldp/20200708/dev/CALDP_copyleft_CAL_linux_py36_rc2.yml new file mode 100644 index 0000000..d89f923 --- /dev/null +++ b/caldp/20200708/dev/CALDP_copyleft_CAL_linux_py36_rc2.yml @@ -0,0 +1,113 @@ +# delivery_name: CALDP_copyleft_CAL_rc2 +# creation_time: Tue Jul 7 16:39:00 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0rc2.dev0+gd2ef87be=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h7b6447c_0 +- libffi=3.3=he6710b0_1 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.1.1=py36_1 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=47.3.1=py36_0 +- sqlite=3.32.3=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.1 + - jeepney==0.4.3 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.19.0 + - numpydoc==1.0.0 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.0 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.1 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.6.3 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200708/dev/CALDP_copyleft_CAL_macos_py36_rc1.yml b/caldp/20200708/dev/CALDP_copyleft_CAL_macos_py36_rc1.yml new file mode 100644 index 0000000..59cff22 --- /dev/null +++ b/caldp/20200708/dev/CALDP_copyleft_CAL_macos_py36_rc1.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_copyleft_CAL_rc1 +# creation_time: Fri Jun 26 09:25:52 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.1.1=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0rc1.dev0+g9bcc9850=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=haf1e3a3_0 +- libffi=3.3=h0a44026_1 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.1.1=py36_1 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=47.3.1=py36_0 +- sqlite=3.32.3=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.1 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.19.0 + - numpydoc==1.0.0 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.0 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.1 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.6.3 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200708/dev/CALDP_copyleft_CAL_macos_py36_rc2.yml b/caldp/20200708/dev/CALDP_copyleft_CAL_macos_py36_rc2.yml new file mode 100644 index 0000000..d4a20b5 --- /dev/null +++ b/caldp/20200708/dev/CALDP_copyleft_CAL_macos_py36_rc2.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_copyleft_CAL_rc2 +# creation_time: Tue Jul 7 16:39:34 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0rc2.dev0+gd2ef87be=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=haf1e3a3_0 +- libffi=3.3=h0a44026_1 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.1.1=py36_1 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=47.3.1=py36_0 +- sqlite=3.32.3=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.1 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.19.0 + - numpydoc==1.0.0 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.0 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.1 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.6.3 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200708/latest-linux.yml b/caldp/20200708/latest-linux.yml new file mode 100644 index 0000000..cf5a86d --- /dev/null +++ b/caldp/20200708/latest-linux.yml @@ -0,0 +1,112 @@ +# delivery_name: CALDP_20200708_CAL_final +# creation_time: Wed Jul 8 14:39:25 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h7b6447c_0 +- libffi=3.3=he6710b0_1 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.1.1=py36_1 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=47.3.1=py36_0 +- sqlite=3.32.3=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.1 + - jeepney==0.4.3 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.19.0 + - numpydoc==1.0.0 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.0 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.1 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.6.3 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200708/latest-macos.yml b/caldp/20200708/latest-macos.yml new file mode 100644 index 0000000..0491801 --- /dev/null +++ b/caldp/20200708/latest-macos.yml @@ -0,0 +1,104 @@ +# delivery_name: CALDP_20200708_CAL_final +# creation_time: Wed Jul 8 14:39:54 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=haf1e3a3_0 +- libffi=3.3=h0a44026_1 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.1.1=py36_1 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=47.3.1=py36_0 +- sqlite=3.32.3=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.6 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.9 + - imageio==2.8.0 + - imagesize==1.2.0 + - importlib-metadata==1.6.1 + - jinja2==2.11.2 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.1 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numpy==1.19.0 + - numpydoc==1.0.0 + - packaging==20.4 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.1.2 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.0 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.1 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.3.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.5.3 + - tifffile==2020.6.3 + - tweakwcs==0.6.4 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200708/release_notes.md b/caldp/20200708/release_notes.md new file mode 100644 index 0000000..8682842 --- /dev/null +++ b/caldp/20200708/release_notes.md @@ -0,0 +1,8 @@ +## 2020/7/8 - CALDP_20200708_CAL_final + +## 2020/7/7 - CALDP_copyleft_CAL_rc2 +### hstcal 2.4.0rc2 + +## 2020/6/26 - CALDP_copyleft_CAL_rc1 +### hstcal 2.4.0rc1 + diff --git a/caldp/20200812/CALDP_20200812_DRZ_linux_py36_final.yml b/caldp/20200812/CALDP_20200812_DRZ_linux_py36_final.yml new file mode 100644 index 0000000..4bb2f10 --- /dev/null +++ b/caldp/20200812/CALDP_20200812_DRZ_linux_py36_final.yml @@ -0,0 +1,123 @@ +# delivery_name: CALDP_20200812_DRZ_final +# creation_time: Wed Aug 12 11:04:02 2020 +# conda_version: 4.8.2 +# condabuild_version: 4.8.2 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.1.1=py36_1 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=49.2.0=py36_0 +- sqlite=3.32.3=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - bokeh==2.1.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - imagesize==1.2.0 + - importlib-metadata==1.7.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.0 + - numpydoc==1.1.0 + - packaging==20.4 + - pandas==1.0.5 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.1 + - scipy==1.5.1 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.2 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.4.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.7.4 + - tornado==6.0.4 + - tweakwcs==0.6.4 + - typing-extensions==3.7.4.2 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200812/CALDP_20200812_DRZ_macos_py36_final.yml b/caldp/20200812/CALDP_20200812_DRZ_macos_py36_final.yml new file mode 100644 index 0000000..e572709 --- /dev/null +++ b/caldp/20200812/CALDP_20200812_DRZ_macos_py36_final.yml @@ -0,0 +1,115 @@ +# delivery_name: CALDP_20200812_DRZ_final +# creation_time: Wed Aug 12 11:04:15 2020 +# conda_version: 4.8.4 +# condabuild_version: 4.8.4 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.1.1=py36_1 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=49.2.0=py36_0 +- sqlite=3.32.3=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - bokeh==2.1.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - imagesize==1.2.0 + - importlib-metadata==1.7.0 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.0 + - numpydoc==1.1.0 + - packaging==20.4 + - pandas==1.0.5 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.1 + - scipy==1.5.1 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.2 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.4.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.7.4 + - tornado==6.0.4 + - tweakwcs==0.6.4 + - typing-extensions==3.7.4.2 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200812/README.md b/caldp/20200812/README.md new file mode 100644 index 0000000..70548c8 --- /dev/null +++ b/caldp/20200812/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20200812/latest-linux.yml +$ conda env create -n caldp_20200812 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20200812 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/20200812/dev/CALDP_alignment_DRZ_linux_py36_rc1.yml b/caldp/20200812/dev/CALDP_alignment_DRZ_linux_py36_rc1.yml new file mode 100644 index 0000000..5859d12 --- /dev/null +++ b/caldp/20200812/dev/CALDP_alignment_DRZ_linux_py36_rc1.yml @@ -0,0 +1,123 @@ +# delivery_name: CALDP_alignment_DRZ_rc1 +# creation_time: Thu Jul 16 10:00:55 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.1.1=py36_1 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=49.2.0=py36_0 +- sqlite=3.32.3=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - bokeh==2.1.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - git+https://github.com/spacetelescope/drizzlepac@3.1.8rc7 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - imagesize==1.2.0 + - importlib-metadata==1.7.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.0 + - numpydoc==1.1.0 + - packaging==20.4 + - pandas==1.0.5 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.1 + - scipy==1.5.1 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.2 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.4.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.7.4 + - tornado==6.0.4 + - tweakwcs==0.6.4 + - typing-extensions==3.7.4.2 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200812/dev/CALDP_alignment_DRZ_linux_py36_rc2.yml b/caldp/20200812/dev/CALDP_alignment_DRZ_linux_py36_rc2.yml new file mode 100644 index 0000000..c5ec287 --- /dev/null +++ b/caldp/20200812/dev/CALDP_alignment_DRZ_linux_py36_rc2.yml @@ -0,0 +1,123 @@ +# delivery_name: CALDP_alignment_DRZ_rc2 +# creation_time: Tue Jul 28 13:41:16 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.1.1=py36_1 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=49.2.0=py36_0 +- sqlite=3.32.3=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - bokeh==2.1.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - git+https://github.com/spacetelescope/drizzlepac@3.1.8rc9 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - imagesize==1.2.0 + - importlib-metadata==1.7.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.0 + - numpydoc==1.1.0 + - packaging==20.4 + - pandas==1.0.5 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.1 + - scipy==1.5.1 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.2 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.4.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.7.4 + - tornado==6.0.4 + - tweakwcs==0.6.4 + - typing-extensions==3.7.4.2 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200812/dev/CALDP_alignment_DRZ_macos_py36_rc1.yml b/caldp/20200812/dev/CALDP_alignment_DRZ_macos_py36_rc1.yml new file mode 100644 index 0000000..ab97ed1 --- /dev/null +++ b/caldp/20200812/dev/CALDP_alignment_DRZ_macos_py36_rc1.yml @@ -0,0 +1,115 @@ +# delivery_name: CALDP_alignment_DRZ_rc1 +# creation_time: Thu Jul 16 10:01:42 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.1.1=py36_1 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=49.2.0=py36_0 +- sqlite=3.32.3=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - bokeh==2.1.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - git+https://github.com/spacetelescope/drizzlepac@3.1.8rc7 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - imagesize==1.2.0 + - importlib-metadata==1.7.0 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.0 + - numpydoc==1.1.0 + - packaging==20.4 + - pandas==1.0.5 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.1 + - scipy==1.5.1 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.2 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.4.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.7.4 + - tornado==6.0.4 + - tweakwcs==0.6.4 + - typing-extensions==3.7.4.2 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200812/dev/CALDP_alignment_DRZ_macos_py36_rc2.yml b/caldp/20200812/dev/CALDP_alignment_DRZ_macos_py36_rc2.yml new file mode 100644 index 0000000..5b73b79 --- /dev/null +++ b/caldp/20200812/dev/CALDP_alignment_DRZ_macos_py36_rc2.yml @@ -0,0 +1,115 @@ +# delivery_name: CALDP_alignment_DRZ_rc2 +# creation_time: Tue Jul 28 13:42:06 2020 +# conda_version: 4.8.3 +# condabuild_version: 4.8.3 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.1.1=py36_1 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=49.2.0=py36_0 +- sqlite=3.32.3=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - bokeh==2.1.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - git+https://github.com/spacetelescope/drizzlepac@3.1.8rc9 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - imagesize==1.2.0 + - importlib-metadata==1.7.0 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.0 + - numpydoc==1.1.0 + - packaging==20.4 + - pandas==1.0.5 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.1 + - scipy==1.5.1 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.2 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.4.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.7.4 + - tornado==6.0.4 + - tweakwcs==0.6.4 + - typing-extensions==3.7.4.2 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200812/latest-linux.yml b/caldp/20200812/latest-linux.yml new file mode 100644 index 0000000..4bb2f10 --- /dev/null +++ b/caldp/20200812/latest-linux.yml @@ -0,0 +1,123 @@ +# delivery_name: CALDP_20200812_DRZ_final +# creation_time: Wed Aug 12 11:04:02 2020 +# conda_version: 4.8.2 +# condabuild_version: 4.8.2 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.1.1=py36_1 +- python=3.6.10=h7579374_2 +- readline=8.0=h7b6447c_0 +- setuptools=49.2.0=py36_0 +- sqlite=3.32.3=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - bokeh==2.1.1 + - calcos==3.3.9 + - cffi==1.14.0 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cryptography==2.9.2 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - imagesize==1.2.0 + - importlib-metadata==1.7.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.0 + - numpydoc==1.1.0 + - packaging==20.4 + - pandas==1.0.5 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pycparser==2.20 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.1 + - scipy==1.5.1 + - secretstorage==3.1.2 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.2 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.4.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.7.4 + - tornado==6.0.4 + - tweakwcs==0.6.4 + - typing-extensions==3.7.4.2 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200812/latest-macos.yml b/caldp/20200812/latest-macos.yml new file mode 100644 index 0000000..e572709 --- /dev/null +++ b/caldp/20200812/latest-macos.yml @@ -0,0 +1,115 @@ +# delivery_name: CALDP_20200812_DRZ_final +# creation_time: Wed Aug 12 11:04:15 2020 +# conda_version: 4.8.4 +# condabuild_version: 4.8.4 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.6.24=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.1.1=py36_1 +- python=3.6.10=hf48f09d_2 +- readline=8.0=h1de35cc_0 +- setuptools=49.2.0=py36_0 +- sqlite=3.32.3=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.34.2=py36_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - alabaster==0.7.12 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - babel==2.8.0 + - beautifulsoup4==4.9.1 + - bokeh==2.1.1 + - calcos==3.3.9 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.5.0.0 + - cycler==0.10.0 + - decorator==4.4.2 + - docutils==0.16 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - imagesize==1.2.0 + - importlib-metadata==1.7.0 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.2.1 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.2.2 + - networkx==2.4 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.0 + - numpydoc==1.1.0 + - packaging==20.4 + - pandas==1.0.5 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pygments==2.6.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==0.9.14 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.1 + - scipy==1.5.1 + - six==1.15.0 + - snowballstemmer==2.0.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - sphinx==3.1.2 + - sphinx-rtd-theme==0.5.0 + - sphinxcontrib-applehelp==1.0.2 + - sphinxcontrib-devhelp==1.0.2 + - sphinxcontrib-htmlhelp==1.0.3 + - sphinxcontrib-jsmath==1.0.1 + - sphinxcontrib-qthelp==1.0.3 + - sphinxcontrib-serializinghtml==1.1.4 + - stistools==1.4.0 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-rtd-theme==0.0.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.7.4 + - tornado==6.0.4 + - tweakwcs==0.6.4 + - typing-extensions==3.7.4.2 + - urllib3==1.25.9 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20200812/release_notes.md b/caldp/20200812/release_notes.md new file mode 100644 index 0000000..d37af66 --- /dev/null +++ b/caldp/20200812/release_notes.md @@ -0,0 +1,8 @@ +## 2020/8/12 - CALDP_20200812_DRZ_final + +## 2020/7/28 - CALDP_alignment_DRZ_rc2 +### drizzlepac 3.1.8rc9 + +## 2020/7/16 - CALDP_alignment_DRZ_rc1 +### drizzlepac 3.1.8rc7 + diff --git a/caldp/20201012/CALDP_20201012_CAL_linux_py36_final.yml b/caldp/20201012/CALDP_20201012_CAL_linux_py36_final.yml new file mode 100644 index 0000000..5a5697a --- /dev/null +++ b/caldp/20201012/CALDP_20201012_CAL_linux_py36_final.yml @@ -0,0 +1,107 @@ +# delivery_name: CALDP_20201012_CAL_final +# creation_time: Mon Oct 12 17:09:00 2020 +# conda_version: 4.8.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.7.22=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1h=h7b6447c_0 +- pip=20.2.2=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=49.6.0=py36_0 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.1 + - bokeh==2.2.1 + - calcos==3.3.10 + - cffi==1.14.2 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.6.0 + - cryptography==3.1 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==1.7.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.4.0 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==1.0.0 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.2 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.0.4 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.10 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20201012/CALDP_20201012_CAL_macos_py36_final.yml b/caldp/20201012/CALDP_20201012_CAL_macos_py36_final.yml new file mode 100644 index 0000000..f09a434 --- /dev/null +++ b/caldp/20201012/CALDP_20201012_CAL_macos_py36_final.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_20201012_CAL_final +# creation_time: Mon Oct 12 17:09:09 2020 +# conda_version: 4.8.5 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.7.22=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1h=haf1e3a3_0 +- pip=20.2.2=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=49.6.0=py36_0 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.1 + - bokeh==2.2.1 + - calcos==3.3.10 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.6.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==1.7.0 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.4.0 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==1.0.0 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.0.4 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.10 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20201012/README.md b/caldp/20201012/README.md new file mode 100644 index 0000000..9ad4d23 --- /dev/null +++ b/caldp/20201012/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20201012/latest-linux.yml +$ conda env create -n caldp_20201012 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20201012 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/20201012/dev/CALDP_errorcalc_CAL_linux_py36_rc2.yml b/caldp/20201012/dev/CALDP_errorcalc_CAL_linux_py36_rc2.yml new file mode 100644 index 0000000..0ee3a9f --- /dev/null +++ b/caldp/20201012/dev/CALDP_errorcalc_CAL_linux_py36_rc2.yml @@ -0,0 +1,108 @@ +# delivery_name: CALDP_errorcalc_CAL_rc2 +# creation_time: Mon Sep 21 12:38:07 2020 +# conda_version: 4.8.2 +# condabuild_version: 3.20.2 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.7.22=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0rc1.dev0+ge08676b0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.2.2=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=49.6.0=py36_0 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.1 + - bokeh==2.2.1 + - git+https://github.com/spacetelescope/calcos@3.3.10-rc1 + - cffi==1.14.2 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.6.0 + - cryptography==3.1 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==1.7.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.4.0 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==1.0.0 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.2 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.0.4 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.10 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20201012/dev/CALDP_errorcalc_CAL_macos_py36_rc2.yml b/caldp/20201012/dev/CALDP_errorcalc_CAL_macos_py36_rc2.yml new file mode 100644 index 0000000..54a5ecd --- /dev/null +++ b/caldp/20201012/dev/CALDP_errorcalc_CAL_macos_py36_rc2.yml @@ -0,0 +1,100 @@ +# delivery_name: CALDP_errorcalc_CAL_rc2 +# creation_time: Fri Sep 25 12:19:00 2020 +# conda_version: 4.8.5 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.7.22=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0rc1.dev0+ge08676b0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1h=haf1e3a3_0 +- pip=20.2.2=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=49.6.0=py36_0 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.1 + - bokeh==2.2.1 + - git+https://github.com/spacetelescope/calcos@3.3.10-rc1 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.6.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==1.7.0 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.4.0 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==1.0.0 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.0.4 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.10 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20201012/dev/CALDP_errorcalc_COS_linux_py36_rc1.yml b/caldp/20201012/dev/CALDP_errorcalc_COS_linux_py36_rc1.yml new file mode 100644 index 0000000..a752a73 --- /dev/null +++ b/caldp/20201012/dev/CALDP_errorcalc_COS_linux_py36_rc1.yml @@ -0,0 +1,107 @@ +# delivery_name: CALDP_errorcalc_COS_rc1 +# creation_time: Wed Sep 16 14:27:47 2020 +# conda_version: 4.8.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.7.22=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1g=h7b6447c_0 +- pip=20.2.2=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=49.6.0=py36_0 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.1 + - bokeh==2.2.1 + - git+https://github.com/spacetelescope/calcos@3.3.10-rc1 + - cffi==1.14.2 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.6.0 + - cryptography==3.1 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==1.7.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.4.0 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==1.0.0 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.2 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.0.4 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.10 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20201012/dev/CALDP_errorcalc_COS_macos_py36_rc1.yml b/caldp/20201012/dev/CALDP_errorcalc_COS_macos_py36_rc1.yml new file mode 100644 index 0000000..69a6de7 --- /dev/null +++ b/caldp/20201012/dev/CALDP_errorcalc_COS_macos_py36_rc1.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_errorcalc_COS_rc1 +# creation_time: Wed Sep 16 14:28:27 2020 +# conda_version: 4.8.4 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.7.22=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.4.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1g=h1de35cc_0 +- pip=20.2.2=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=49.6.0=py36_0 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.1 + - bokeh==2.2.1 + - git+https://github.com/spacetelescope/calcos@3.3.10-rc1 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.6.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==1.7.0 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.4.0 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==1.0.0 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.0.4 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.10 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20201012/latest-linux.yml b/caldp/20201012/latest-linux.yml new file mode 100644 index 0000000..5a5697a --- /dev/null +++ b/caldp/20201012/latest-linux.yml @@ -0,0 +1,107 @@ +# delivery_name: CALDP_20201012_CAL_final +# creation_time: Mon Oct 12 17:09:00 2020 +# conda_version: 4.8.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.7.22=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1h=h7b6447c_0 +- pip=20.2.2=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=49.6.0=py36_0 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.1 + - bokeh==2.2.1 + - calcos==3.3.10 + - cffi==1.14.2 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.6.0 + - cryptography==3.1 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==1.7.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.4.0 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==1.0.0 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.2 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.0.4 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.10 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20201012/latest-macos.yml b/caldp/20201012/latest-macos.yml new file mode 100644 index 0000000..f09a434 --- /dev/null +++ b/caldp/20201012/latest-macos.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_20201012_CAL_final +# creation_time: Mon Oct 12 17:09:09 2020 +# conda_version: 4.8.5 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.7.22=0 +- certifi=2020.6.20=py36_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1h=haf1e3a3_0 +- pip=20.2.2=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=49.6.0=py36_0 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.0.1.post1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.1 + - bokeh==2.2.1 + - calcos==3.3.10 + - chardet==3.0.4 + - costools==1.2.3 + - crds==7.6.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.1.8 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==1.7.0 + - jinja2==2.11.2 + - joblib==0.16.0 + - keyring==21.4.0 + - kiwisolver==1.2.0 + - lxml==4.5.2 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - nose==1.3.7 + - numexpr==2.7.1 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - parsley==1.3 + - photutils==0.7.2 + - pillow==7.2.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - pysynphot==1.0.0 + - python-dateutil==2.8.1 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.18 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.0.4 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.10 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.1.0 diff --git a/caldp/20201012/release_notes.md b/caldp/20201012/release_notes.md new file mode 100644 index 0000000..0a2f3ee --- /dev/null +++ b/caldp/20201012/release_notes.md @@ -0,0 +1,9 @@ +## 2020/10/12 - CALDP_20201012_CAL_final + +## 2020/9/21 - CALDP_errorcalc_CAL_rc2 +### hstcal 2.5.0rc1 +### calcos 3.3.10-rc1 + +## 2020/9/16 - CALDP_errorcalc_COS_rc1 +### calcos 3.3.10-rc1 + diff --git a/caldp/20201208/CALDP_20201208_DRZ_linux_py36_final.yml b/caldp/20201208/CALDP_20201208_DRZ_linux_py36_final.yml new file mode 100644 index 0000000..c03aa75 --- /dev/null +++ b/caldp/20201208/CALDP_20201208_DRZ_linux_py36_final.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_20201208_DRZ_final +# creation_time: Tue Dec 8 16:21:54 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1h=h7b6447c_0 +- pip=20.2.4=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=50.3.0=py36hb0f4dca_1 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - cffi==1.14.3 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.2.1 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.0 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/CALDP_20201208_DRZ_macos_py36_final.yml b/caldp/20201208/CALDP_20201208_DRZ_macos_py36_final.yml new file mode 100644 index 0000000..0bfd339 --- /dev/null +++ b/caldp/20201208/CALDP_20201208_DRZ_macos_py36_final.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_20201208_DRZ_final +# creation_time: Tue Dec 8 16:22:44 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1h=haf1e3a3_0 +- pip=20.2.4=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=50.3.0=py36h0dc7051_1 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.0 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/README.md b/caldp/20201208/README.md new file mode 100644 index 0000000..9353dff --- /dev/null +++ b/caldp/20201208/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20201208/latest-linux.yml +$ conda env create -n caldp_20201208 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20201208 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc1.yml b/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc1.yml new file mode 100644 index 0000000..121ef3a --- /dev/null +++ b/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc1.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_initialSVM_DRZ_rc1 +# creation_time: Mon Nov 2 10:50:12 2020 +# conda_version: 4.9.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1h=h7b6447c_0 +- pip=20.2.4=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=50.3.0=py36hb0f4dca_1 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - cffi==1.14.3 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.2.1 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.0rc1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc2.yml b/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc2.yml new file mode 100644 index 0000000..cd57930 --- /dev/null +++ b/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc2.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_initialSVM_DRZ_rc2 +# creation_time: Thu Nov 12 12:06:39 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1h=h7b6447c_0 +- pip=20.2.4=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=50.3.0=py36hb0f4dca_1 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - cffi==1.14.3 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.2.1 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.0rc2 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc3.yml b/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc3.yml new file mode 100644 index 0000000..b645bb2 --- /dev/null +++ b/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc3.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_initialSVM_DRZ_rc3 +# creation_time: Tue Nov 17 15:22:31 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1h=h7b6447c_0 +- pip=20.2.4=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=50.3.0=py36hb0f4dca_1 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - cffi==1.14.3 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.2.1 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.0rc3 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc4.yml b/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc4.yml new file mode 100644 index 0000000..008c040 --- /dev/null +++ b/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc4.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_initialSVM_DRZ_rc4 +# creation_time: Wed Dec 2 13:43:20 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1h=h7b6447c_0 +- pip=20.2.4=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=50.3.0=py36hb0f4dca_1 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - cffi==1.14.3 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.2.1 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.0rc4 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc5.yml b/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc5.yml new file mode 100644 index 0000000..00aca0c --- /dev/null +++ b/caldp/20201208/dev/CALDP_initialSVM_DRZ_linux_py36_rc5.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_initialSVM_DRZ_rc5 +# creation_time: Thu Dec 3 14:13:58 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1h=h7b6447c_0 +- pip=20.2.4=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=50.3.0=py36hb0f4dca_1 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - cffi==1.14.3 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.2.1 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.0rc5 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc1.yml b/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc1.yml new file mode 100644 index 0000000..90ab24d --- /dev/null +++ b/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc1.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_initialSVM_DRZ_rc1 +# creation_time: Mon Nov 2 10:46:29 2020 +# conda_version: 4.9.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1h=haf1e3a3_0 +- pip=20.2.4=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=50.3.0=py36h0dc7051_1 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.0rc1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc2.yml b/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc2.yml new file mode 100644 index 0000000..c54a67e --- /dev/null +++ b/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc2.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_initialSVM_DRZ_rc2 +# creation_time: Thu Nov 12 12:07:08 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1h=haf1e3a3_0 +- pip=20.2.4=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=50.3.0=py36h0dc7051_1 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.0rc2 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc3.yml b/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc3.yml new file mode 100644 index 0000000..31dc04c --- /dev/null +++ b/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc3.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_initialSVM_DRZ_rc3 +# creation_time: Tue Nov 17 15:22:57 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1h=haf1e3a3_0 +- pip=20.2.4=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=50.3.0=py36h0dc7051_1 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.0rc3 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc4.yml b/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc4.yml new file mode 100644 index 0000000..7330011 --- /dev/null +++ b/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc4.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_initialSVM_DRZ_rc4 +# creation_time: Wed Dec 2 13:44:26 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1h=haf1e3a3_0 +- pip=20.2.4=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=50.3.0=py36h0dc7051_1 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.0rc4 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc5.yml b/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc5.yml new file mode 100644 index 0000000..609b85e --- /dev/null +++ b/caldp/20201208/dev/CALDP_initialSVM_DRZ_macos_py36_rc5.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_initialSVM_DRZ_rc5 +# creation_time: Thu Dec 3 14:14:51 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1h=haf1e3a3_0 +- pip=20.2.4=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=50.3.0=py36h0dc7051_1 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.0rc5 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/latest-linux.yml b/caldp/20201208/latest-linux.yml new file mode 100644 index 0000000..c03aa75 --- /dev/null +++ b/caldp/20201208/latest-linux.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_20201208_DRZ_final +# creation_time: Tue Dec 8 16:21:54 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1h=h7b6447c_0 +- pip=20.2.4=py36_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.0=h7b6447c_0 +- setuptools=50.3.0=py36hb0f4dca_1 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - cffi==1.14.3 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.2.1 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.0 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jeepney==0.4.3 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - secretstorage==3.1.2 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/latest-macos.yml b/caldp/20201208/latest-macos.yml new file mode 100644 index 0000000..0bfd339 --- /dev/null +++ b/caldp/20201208/latest-macos.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_20201208_DRZ_final +# creation_time: Tue Dec 8 16:22:44 2020 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2020.10.14=0 +- certifi=2020.6.20=pyhd3eb1b0_3 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.5.0=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1h=haf1e3a3_0 +- pip=20.2.4=py36_0 +- python=3.6.12=h26836e1_2 +- readline=8.0=h1de35cc_0 +- setuptools=50.3.0=py36h0dc7051_1 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.35.1=py_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.2.0 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - chardet==3.0.4 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.0 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==2.0.0 + - jinja2==2.11.2 + - joblib==0.17.0 + - keyring==21.4.0 + - kiwisolver==1.3.1 + - lxml==4.6.1 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.1 + - numpy==1.19.3 + - packaging==20.4 + - pandas==1.1.4 + - parsley==1.3 + - photutils==1.0.1 + - pillow==8.0.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2020.4 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - requests==2.24.0 + - scikit-image==0.17.2 + - scikit-learn==0.23.2 + - scipy==1.5.3 + - six==1.15.0 + - soupsieve==2.0.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.0 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.6.5 + - typing-extensions==3.7.4.3 + - urllib3==1.25.11 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20201208/release_notes.md b/caldp/20201208/release_notes.md new file mode 100644 index 0000000..ee648cf --- /dev/null +++ b/caldp/20201208/release_notes.md @@ -0,0 +1,17 @@ +## 2020/12/8 - CALDP_20201208_DRZ_final + +## 2020/12/3 - CALDP_initialSVM_DRZ_rc5 +### drizzlepac 3.2.0rc5 + +## 2020/12/2 - CALDP_initialSVM_DRZ_rc4 +### drizzlepac 3.2.0rc4 + +## 2020/11/17 - CALDP_initialSVM_DRZ_rc3 +### drizzlepac 3.2.0rc3 + +## 2020/11/12 - CALDP_initialSVM_DRZ_rc2 +### drizzlepac 3.2.0rc2 + +## 2020/11/2 - CALDP_initialSVM_DRZ_rc1 +### drizzlepac 3.2.0rc1 + diff --git a/caldp/20210323/CALDP_20210323_CAL_linux_py36_final.yml b/caldp/20210323/CALDP_20210323_CAL_linux_py36_final.yml new file mode 100644 index 0000000..4acce4d --- /dev/null +++ b/caldp/20210323/CALDP_20210323_CAL_linux_py36_final.yml @@ -0,0 +1,106 @@ +# delivery_name: CALDP_20210323_CAL_final +# creation_time: Tue Mar 23 18:50:48 2021 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.1.19=h06a4308_0 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.6.0.dev0+gce2514a6=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1i=h27cfd23_0 +- pip=20.3.3=py36h06a4308_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.5 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.4.0 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==22.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.2 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.2 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.0 + - typing-extensions==3.7.4.3 + - urllib3==1.26.3 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20210323/CALDP_20210323_CAL_macos_py36_final.yml b/caldp/20210323/CALDP_20210323_CAL_macos_py36_final.yml new file mode 100644 index 0000000..9c23f75 --- /dev/null +++ b/caldp/20210323/CALDP_20210323_CAL_macos_py36_final.yml @@ -0,0 +1,98 @@ +# delivery_name: CALDP_20210323_CAL_final +# creation_time: Tue Mar 23 18:51:21 2021 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.1.19=hecd8cb5_0 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.6.0.dev0+gce2514a6=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1i=h9ed2024_0 +- pip=20.3.3=py36hecd8cb5_0 +- python=3.6.12=h26836e1_2 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.4.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==22.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.2 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.2 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.0 + - typing-extensions==3.7.4.3 + - urllib3==1.26.3 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20210323/README.md b/caldp/20210323/README.md new file mode 100644 index 0000000..9f6c847 --- /dev/null +++ b/caldp/20210323/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20210323/latest-linux.yml +$ conda env create -n caldp_20210323 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20210323 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/20210323/dev/CALDP_satmapplus_CAL_linux_py36_rc1.yml b/caldp/20210323/dev/CALDP_satmapplus_CAL_linux_py36_rc1.yml new file mode 100644 index 0000000..02e9223 --- /dev/null +++ b/caldp/20210323/dev/CALDP_satmapplus_CAL_linux_py36_rc1.yml @@ -0,0 +1,106 @@ +# delivery_name: CALDP_satmapplus_CAL_rc1 +# creation_time: Tue Feb 16 10:20:36 2021 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.1.19=h06a4308_0 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.6.0rc3.dev0+gce2514a6=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1i=h27cfd23_0 +- pip=20.3.3=py36h06a4308_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.5 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.4.0 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==22.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.2 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.2 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.0 + - typing-extensions==3.7.4.3 + - urllib3==1.26.3 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20210323/dev/CALDP_satmapplus_CAL_macos_py36_rc1.yml b/caldp/20210323/dev/CALDP_satmapplus_CAL_macos_py36_rc1.yml new file mode 100644 index 0000000..eff9ffe --- /dev/null +++ b/caldp/20210323/dev/CALDP_satmapplus_CAL_macos_py36_rc1.yml @@ -0,0 +1,98 @@ +# delivery_name: CALDP_satmapplus_CAL_rc1 +# creation_time: Tue Feb 16 10:19:51 2021 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.1.19=hecd8cb5_0 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.6.0rc3.dev0+gce2514a6=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1i=h9ed2024_0 +- pip=20.3.3=py36hecd8cb5_0 +- python=3.6.12=h26836e1_2 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.4.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==22.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.2 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.2 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.0 + - typing-extensions==3.7.4.3 + - urllib3==1.26.3 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20210323/latest-linux.yml b/caldp/20210323/latest-linux.yml new file mode 100644 index 0000000..4acce4d --- /dev/null +++ b/caldp/20210323/latest-linux.yml @@ -0,0 +1,106 @@ +# delivery_name: CALDP_20210323_CAL_final +# creation_time: Tue Mar 23 18:50:48 2021 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.1.19=h06a4308_0 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.6.0.dev0+gce2514a6=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libedit=3.1.20191231=h14c3975_1 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1i=h27cfd23_0 +- pip=20.3.3=py36h06a4308_0 +- python=3.6.12=hcff3b4d_2 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.33.0=h62c20be_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.5 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.4.0 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==22.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.2 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.2 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.0 + - typing-extensions==3.7.4.3 + - urllib3==1.26.3 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20210323/latest-macos.yml b/caldp/20210323/latest-macos.yml new file mode 100644 index 0000000..9c23f75 --- /dev/null +++ b/caldp/20210323/latest-macos.yml @@ -0,0 +1,98 @@ +# delivery_name: CALDP_20210323_CAL_final +# creation_time: Tue Mar 23 18:51:21 2021 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.1.19=hecd8cb5_0 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.6.0.dev0+gce2514a6=0 +- libcxx=10.0.0=1 +- libedit=3.1.20191231=h1de35cc_1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1i=h9ed2024_0 +- pip=20.3.3=py36hecd8cb5_0 +- python=3.6.12=h26836e1_2 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.33.0=hffcf06c_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.2.3 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.4.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==22.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.2 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.2 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.0 + - typing-extensions==3.7.4.3 + - urllib3==1.26.3 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.0 diff --git a/caldp/20210323/release_notes.md b/caldp/20210323/release_notes.md new file mode 100644 index 0000000..f9de8ac --- /dev/null +++ b/caldp/20210323/release_notes.md @@ -0,0 +1,7 @@ +## 2021/3/23 - CALDP_20210323_CAL_final +### hstcal 2.6.0 + +## 2021/2/16 - CALDP_satmapplus_CAL_rc1 +### hstcal 2.6.0rc3 +### drizzlepac 3.2.1 + diff --git a/caldp/20210415/CALDP_20210415_CAL_linux_py36_final.yml b/caldp/20210415/CALDP_20210415_CAL_linux_py36_final.yml new file mode 100644 index 0000000..d6a0ff9 --- /dev/null +++ b/caldp/20210415/CALDP_20210415_CAL_linux_py36_final.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_20210415_CAL_final +# creation_time: Thu Apr 15 15:08:54 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.1.19=h06a4308_1 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.0.dev0+ge0f20b78=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1j=h27cfd23_0 +- pip=21.0.1=py36h06a4308_0 +- python=3.6.13=hdb3f193_0 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.35.2=hdfb4753_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.0 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.6 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.7.3 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.0 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.2 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210415/CALDP_20210415_CAL_macos_py36_final.yml b/caldp/20210415/CALDP_20210415_CAL_macos_py36_final.yml new file mode 100644 index 0000000..5eee4bd --- /dev/null +++ b/caldp/20210415/CALDP_20210415_CAL_macos_py36_final.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_20210415_CAL_final +# creation_time: Thu Apr 15 15:09:53 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.1.19=hecd8cb5_1 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.0.dev0+ge0f20b78=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1j=h9ed2024_0 +- pip=21.0.1=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.35.2=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.0 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.7.3 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.0 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.2 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210415/README.md b/caldp/20210415/README.md new file mode 100644 index 0000000..06440ae --- /dev/null +++ b/caldp/20210415/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20210415/latest-linux.yml +$ conda env create -n caldp_20210415 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20210415 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/20210415/dev/CALDP_cte_CAL_linux_py36_rc1.yml b/caldp/20210415/dev/CALDP_cte_CAL_linux_py36_rc1.yml new file mode 100644 index 0000000..04ec12f --- /dev/null +++ b/caldp/20210415/dev/CALDP_cte_CAL_linux_py36_rc1.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_cte_CAL_rc1 +# creation_time: Wed Mar 24 17:42:31 2021 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.1.19=h06a4308_1 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.0rc1.dev0+g82c7c541=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1j=h27cfd23_0 +- pip=21.0.1=py36h06a4308_0 +- python=3.6.13=hdb3f193_0 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.35.2=hdfb4753_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.0 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.6 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.7.3 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.0 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.2 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210415/dev/CALDP_cte_CAL_linux_py36_rc2.yml b/caldp/20210415/dev/CALDP_cte_CAL_linux_py36_rc2.yml new file mode 100644 index 0000000..37ee594 --- /dev/null +++ b/caldp/20210415/dev/CALDP_cte_CAL_linux_py36_rc2.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_cte_CAL_rc2 +# creation_time: Thu Apr 8 21:50:53 2021 +# conda_version: 4.10.0 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.1.19=h06a4308_1 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.0rc2.dev0+ga5a7d359=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1j=h27cfd23_0 +- pip=21.0.1=py36h06a4308_0 +- python=3.6.13=hdb3f193_0 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.35.2=hdfb4753_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.0 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.6 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.7.3 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.0 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.2 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - git+https://github.com/spacetelescope/stwcs@1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - git+https://github.com/spacetelescope/tweakwcs@0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210415/dev/CALDP_cte_CAL_linux_py36_rc3.yml b/caldp/20210415/dev/CALDP_cte_CAL_linux_py36_rc3.yml new file mode 100644 index 0000000..427faf5 --- /dev/null +++ b/caldp/20210415/dev/CALDP_cte_CAL_linux_py36_rc3.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_cte_CAL_rc3 +# creation_time: Fri Apr 9 11:21:43 2021 +# conda_version: 4.10.0 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.1.19=h06a4308_1 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.0rc3.dev0+ge0f20b78=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1j=h27cfd23_0 +- pip=21.0.1=py36h06a4308_0 +- python=3.6.13=hdb3f193_0 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.35.2=hdfb4753_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.0 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.6 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.7.3 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.0 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.2 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - git+https://github.com/spacetelescope/stwcs@1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - git+https://github.com/spacetelescope/tweakwcs@0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210415/dev/CALDP_cte_CAL_macos_py36_rc1.yml b/caldp/20210415/dev/CALDP_cte_CAL_macos_py36_rc1.yml new file mode 100644 index 0000000..ba52251 --- /dev/null +++ b/caldp/20210415/dev/CALDP_cte_CAL_macos_py36_rc1.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_cte_CAL_rc1 +# creation_time: Wed Mar 24 17:43:34 2021 +# conda_version: 4.9.2 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.1.19=hecd8cb5_1 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.0rc1.dev0+g82c7c541=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1j=h9ed2024_0 +- pip=21.0.1=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.35.2=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.0 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.7.3 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.0 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.2 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210415/dev/CALDP_cte_CAL_macos_py36_rc2.yml b/caldp/20210415/dev/CALDP_cte_CAL_macos_py36_rc2.yml new file mode 100644 index 0000000..3f36666 --- /dev/null +++ b/caldp/20210415/dev/CALDP_cte_CAL_macos_py36_rc2.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_cte_CAL_rc2 +# creation_time: Thu Apr 8 21:51:49 2021 +# conda_version: 4.10.0 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.1.19=hecd8cb5_1 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.0rc2.dev0+ga5a7d359=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1j=h9ed2024_0 +- pip=21.0.1=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.35.2=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.0 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.7.3 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.0 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.2 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - git+https://github.com/spacetelescope/stwcs@1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - git+https://github.com/spacetelescope/tweakwcs@0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210415/dev/CALDP_cte_CAL_macos_py36_rc3.yml b/caldp/20210415/dev/CALDP_cte_CAL_macos_py36_rc3.yml new file mode 100644 index 0000000..1261739 --- /dev/null +++ b/caldp/20210415/dev/CALDP_cte_CAL_macos_py36_rc3.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_cte_CAL_rc3 +# creation_time: Fri Apr 9 11:18:36 2021 +# conda_version: 4.10.0 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.1.19=hecd8cb5_1 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.0rc3.dev0+ge0f20b78=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1j=h9ed2024_0 +- pip=21.0.1=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.35.2=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.0 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.7.3 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.0 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.2 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - git+https://github.com/spacetelescope/stwcs@1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - git+https://github.com/spacetelescope/tweakwcs@0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210415/latest-linux.yml b/caldp/20210415/latest-linux.yml new file mode 100644 index 0000000..d6a0ff9 --- /dev/null +++ b/caldp/20210415/latest-linux.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_20210415_CAL_final +# creation_time: Thu Apr 15 15:08:54 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.1.19=h06a4308_1 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.0.dev0+ge0f20b78=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1j=h27cfd23_0 +- pip=21.0.1=py36h06a4308_0 +- python=3.6.13=hdb3f193_0 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.35.2=hdfb4753_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.0 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.6 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.7.3 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.0 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.2 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210415/latest-macos.yml b/caldp/20210415/latest-macos.yml new file mode 100644 index 0000000..5eee4bd --- /dev/null +++ b/caldp/20210415/latest-macos.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_20210415_CAL_final +# creation_time: Thu Apr 15 15:09:53 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.1.19=hecd8cb5_1 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.0.dev0+ge0f20b78=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1j=h9ed2024_0 +- pip=21.0.1=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.35.2=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.0 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==3.7.3 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.0 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.1.2 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.1 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210415/release_notes.md b/caldp/20210415/release_notes.md new file mode 100644 index 0000000..4f62424 --- /dev/null +++ b/caldp/20210415/release_notes.md @@ -0,0 +1,19 @@ +## 2021/4/15 - CALDP_20210415_CAL_final +### hstcal 2.7.0 + +## 2021/4/9 - CALDP_cte_CAL_rc3 +### hstcal 2.7.0rc3 +### drizzlepac 3.2.1 +### stwcs 1.6.1 +### tweakwcs 0.7.1 + +## 2021/4/9 - CALDP_cte_CAL_rc2 +### hstcal 2.7.0rc2 +### drizzlepac 3.2.1 +### stwcs 1.6.1 +### tweakwcs 0.7.1 + +## 2021/3/24 - CALDP_cte_CAL_rc1 +### hstcal 2.7.0rc1 +### drizzlepac 3.2.1 + diff --git a/caldp/20210505/CALDP_20210505_CAL_linux_py36_final.yml b/caldp/20210505/CALDP_20210505_CAL_linux_py36_final.yml new file mode 100644 index 0000000..2f2f327 --- /dev/null +++ b/caldp/20210505/CALDP_20210505_CAL_linux_py36_final.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_20210505_CAL_final +# creation_time: Wed May 5 10:09:03 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.4.13=h06a4308_1 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.1.dev0+ga1d9cd3f=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.0.1=py36h06a4308_0 +- python=3.6.13=hdb3f193_0 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.35.4=hdfb4753_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210505/CALDP_20210505_CAL_macos_py36_final.yml b/caldp/20210505/CALDP_20210505_CAL_macos_py36_final.yml new file mode 100644 index 0000000..ffddd4d --- /dev/null +++ b/caldp/20210505/CALDP_20210505_CAL_macos_py36_final.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_20210505_CAL_final +# creation_time: Wed May 5 10:09:39 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.4.13=hecd8cb5_1 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.1.dev0+ga1d9cd3f=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.0.1=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.35.4=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210505/README.md b/caldp/20210505/README.md new file mode 100644 index 0000000..83c2dce --- /dev/null +++ b/caldp/20210505/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20210505/latest-linux.yml +$ conda env create -n caldp_20210505 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20210505 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/20210505/dev/CALDP_twobugs_CAL_linux_py36_rc1.yml b/caldp/20210505/dev/CALDP_twobugs_CAL_linux_py36_rc1.yml new file mode 100644 index 0000000..f50f600 --- /dev/null +++ b/caldp/20210505/dev/CALDP_twobugs_CAL_linux_py36_rc1.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_twobugs_CAL_rc1 +# creation_time: Tue May 4 13:26:59 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.4.13=h06a4308_1 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.1.dev0+ga1d9cd3f=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.0.1=py36h06a4308_0 +- python=3.6.13=hdb3f193_0 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.35.4=hdfb4753_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210505/dev/CALDP_twobugs_CAL_macos_py36_rc1.yml b/caldp/20210505/dev/CALDP_twobugs_CAL_macos_py36_rc1.yml new file mode 100644 index 0000000..8efc578 --- /dev/null +++ b/caldp/20210505/dev/CALDP_twobugs_CAL_macos_py36_rc1.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_twobugs_CAL_rc1 +# creation_time: Tue May 4 13:28:26 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.4.13=hecd8cb5_1 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.1.dev0+ga1d9cd3f=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.0.1=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.35.4=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210505/latest-linux.yml b/caldp/20210505/latest-linux.yml new file mode 100644 index 0000000..2f2f327 --- /dev/null +++ b/caldp/20210505/latest-linux.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_20210505_CAL_final +# creation_time: Wed May 5 10:09:03 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.4.13=h06a4308_1 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.1.dev0+ga1d9cd3f=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.0.1=py36h06a4308_0 +- python=3.6.13=hdb3f193_0 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.35.4=hdfb4753_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210505/latest-macos.yml b/caldp/20210505/latest-macos.yml new file mode 100644 index 0000000..ffddd4d --- /dev/null +++ b/caldp/20210505/latest-macos.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_20210505_CAL_final +# creation_time: Wed May 5 10:09:39 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.4.13=hecd8cb5_1 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.1.dev0+ga1d9cd3f=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.0.1=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.35.4=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210505/release_notes.md b/caldp/20210505/release_notes.md new file mode 100644 index 0000000..f2999b7 --- /dev/null +++ b/caldp/20210505/release_notes.md @@ -0,0 +1,7 @@ +## 2021/5/5 - CALDP_20210505_CAL_final +### hstcal 2.7.1 + +## 2021/5/4 - CALDP_twobugs_CAL_rc1 +### hstcal 2.7.1 +### drizzlepac 3.2.1 + diff --git a/caldp/20210715/CALDP_20210715_CAL_linux_py36_final.yml b/caldp/20210715/CALDP_20210715_CAL_linux_py36_final.yml new file mode 100644 index 0000000..3e5e7b0 --- /dev/null +++ b/caldp/20210715/CALDP_20210715_CAL_linux_py36_final.yml @@ -0,0 +1,84 @@ +# delivery_name: CALDP_20210715_CAL_final +# creation_time: Thu Jul 15 10:09:03 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- python=3.6.13=hdb3f193_0 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- pip=21.1.3=py36hecd8cb5_0 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210715/CALDP_20210715_CAL_macos_py36_final.yml b/caldp/20210715/CALDP_20210715_CAL_macos_py36_final.yml new file mode 100644 index 0000000..67aefc7 --- /dev/null +++ b/caldp/20210715/CALDP_20210715_CAL_macos_py36_final.yml @@ -0,0 +1,79 @@ +# delivery_name: CALDP_20210715_CAL_final +# creation_time: Thu Jul 15 10:09:03 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- python=3.6.13=h88f2d9e_0 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- pip=21.1.3=py36hecd8cb5_0 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210715/README.md b/caldp/20210715/README.md new file mode 100644 index 0000000..83c2dce --- /dev/null +++ b/caldp/20210715/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20210505/latest-linux.yml +$ conda env create -n caldp_20210505 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20210505 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/20210715/dev/CALDP_twobugs_CAL_linux_py36_rc1.yml b/caldp/20210715/dev/CALDP_twobugs_CAL_linux_py36_rc1.yml new file mode 100644 index 0000000..f50f600 --- /dev/null +++ b/caldp/20210715/dev/CALDP_twobugs_CAL_linux_py36_rc1.yml @@ -0,0 +1,105 @@ +# delivery_name: CALDP_twobugs_CAL_rc1 +# creation_time: Tue May 4 13:26:59 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.4.13=h06a4308_1 +- certifi=2020.12.5=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.1.dev0+ga1d9cd3f=0 +- ld_impl_linux-64=2.33.1=h53a641e_7 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.1.0=hdf63c60_0 +- libgfortran-ng=7.3.0=hdf63c60_0 +- libstdcxx-ng=9.1.0=hdf63c60_0 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.0.1=py36h06a4308_0 +- python=3.6.13=hdb3f193_0 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.35.4=hdfb4753_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210715/dev/CALDP_twobugs_CAL_macos_py36_rc1.yml b/caldp/20210715/dev/CALDP_twobugs_CAL_macos_py36_rc1.yml new file mode 100644 index 0000000..8efc578 --- /dev/null +++ b/caldp/20210715/dev/CALDP_twobugs_CAL_macos_py36_rc1.yml @@ -0,0 +1,97 @@ +# delivery_name: CALDP_twobugs_CAL_rc1 +# creation_time: Tue May 4 13:28:26 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.4.13=hecd8cb5_1 +- certifi=2020.12.5=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.1.dev0+ga1d9cd3f=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.0.1=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.35.4=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.1 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210715/latest-linux.yml b/caldp/20210715/latest-linux.yml new file mode 100644 index 0000000..3e5e7b0 --- /dev/null +++ b/caldp/20210715/latest-linux.yml @@ -0,0 +1,84 @@ +# delivery_name: CALDP_20210715_CAL_final +# creation_time: Thu Jul 15 10:09:03 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- python=3.6.13=hdb3f193_0 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- pip=21.1.3=py36hecd8cb5_0 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - cffi==1.14.5 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jeepney==0.6.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210715/latest-macos.yml b/caldp/20210715/latest-macos.yml new file mode 100644 index 0000000..67aefc7 --- /dev/null +++ b/caldp/20210715/latest-macos.yml @@ -0,0 +1,79 @@ +# delivery_name: CALDP_20210715_CAL_final +# creation_time: Thu Jul 15 10:09:03 2021 +# conda_version: 4.10.1 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- python=3.6.13=h88f2d9e_0 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- pip=21.1.3=py36hecd8cb5_0 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.1 + - beautifulsoup4==4.9.3 + - bokeh==2.3.1 + - calcos==3.3.10 + - chardet==4.0.0 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==2.10 + - imageio==2.9.0 + - importlib-metadata==4.0.1 + - jinja2==2.11.3 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==1.1.1 + - matplotlib==3.3.4 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==20.9 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.2.0 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.1 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.25.1 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.15.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.19 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.1.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.4 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.4.1 diff --git a/caldp/20210715/release_notes.md b/caldp/20210715/release_notes.md new file mode 100644 index 0000000..f2999b7 --- /dev/null +++ b/caldp/20210715/release_notes.md @@ -0,0 +1,7 @@ +## 2021/5/5 - CALDP_20210505_CAL_final +### hstcal 2.7.1 + +## 2021/5/4 - CALDP_twobugs_CAL_rc1 +### hstcal 2.7.1 +### drizzlepac 3.2.1 + diff --git a/caldp/20210721/CALDP_20210721_CAL_linux_py36_final.yml b/caldp/20210721/CALDP_20210721_CAL_linux_py36_final.yml new file mode 100644 index 0000000..42afdf7 --- /dev/null +++ b/caldp/20210721/CALDP_20210721_CAL_linux_py36_final.yml @@ -0,0 +1,110 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:05 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- _openmp_mutex=4.5=1_gnu +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.7.5=h06a4308_1 +- certifi=2021.5.30=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- ld_impl_linux-64=2.35.1=h7274673_9 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.3.0=h5101ec6_17 +- libgfortran-ng=7.5.0=ha8ba4b0_17 +- libgfortran4=7.5.0=ha8ba4b0_17 +- libgomp=9.3.0=h5101ec6_17 +- libstdcxx-ng=9.3.0=hd4cf53a_17 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.1.3=py36h06a4308_0 +- python=3.6.13=h12debd9_1 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.36.0=hc218d9a_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - cffi==1.14.6 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jeepney==0.7.0 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/20210721/CALDP_20210721_CAL_macos_py36_final.yml b/caldp/20210721/CALDP_20210721_CAL_macos_py36_final.yml new file mode 100644 index 0000000..b93962e --- /dev/null +++ b/caldp/20210721/CALDP_20210721_CAL_macos_py36_final.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:42 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.7.5=hecd8cb5_1 +- certifi=2021.5.30=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.1.3=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.36.0=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/20210721/README.md b/caldp/20210721/README.md new file mode 100644 index 0000000..f9273b3 --- /dev/null +++ b/caldp/20210721/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20210721/latest-linux.yml +$ conda env create -n caldp_20210721 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20210721 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/20210721/dev/CALDP_recovery_CAL_linux_py36_rc1.yml b/caldp/20210721/dev/CALDP_recovery_CAL_linux_py36_rc1.yml new file mode 100644 index 0000000..3a2453d --- /dev/null +++ b/caldp/20210721/dev/CALDP_recovery_CAL_linux_py36_rc1.yml @@ -0,0 +1,110 @@ +# delivery_name: CALDP_recovery_CAL_rc1 +# creation_time: Tue Jul 20 10:34:00 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- _openmp_mutex=4.5=1_gnu +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.7.5=h06a4308_1 +- certifi=2021.5.30=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- ld_impl_linux-64=2.35.1=h7274673_9 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.3.0=h5101ec6_17 +- libgfortran-ng=7.5.0=ha8ba4b0_17 +- libgfortran4=7.5.0=ha8ba4b0_17 +- libgomp=9.3.0=h5101ec6_17 +- libstdcxx-ng=9.3.0=hd4cf53a_17 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.1.3=py36h06a4308_0 +- python=3.6.13=h12debd9_1 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.36.0=hc218d9a_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - cffi==1.14.6 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jeepney==0.7.0 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/20210721/dev/CALDP_recovery_CAL_macos_py36_rc1.yml b/caldp/20210721/dev/CALDP_recovery_CAL_macos_py36_rc1.yml new file mode 100644 index 0000000..3306bed --- /dev/null +++ b/caldp/20210721/dev/CALDP_recovery_CAL_macos_py36_rc1.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_recovery_CAL_rc1 +# creation_time: Tue Jul 20 10:31:43 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.7.5=hecd8cb5_1 +- certifi=2021.5.30=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.1.3=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.36.0=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/20210721/latest-linux.yml b/caldp/20210721/latest-linux.yml new file mode 100644 index 0000000..42afdf7 --- /dev/null +++ b/caldp/20210721/latest-linux.yml @@ -0,0 +1,110 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:05 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- _openmp_mutex=4.5=1_gnu +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.7.5=h06a4308_1 +- certifi=2021.5.30=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- ld_impl_linux-64=2.35.1=h7274673_9 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.3.0=h5101ec6_17 +- libgfortran-ng=7.5.0=ha8ba4b0_17 +- libgfortran4=7.5.0=ha8ba4b0_17 +- libgomp=9.3.0=h5101ec6_17 +- libstdcxx-ng=9.3.0=hd4cf53a_17 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.1.3=py36h06a4308_0 +- python=3.6.13=h12debd9_1 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.36.0=hc218d9a_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - cffi==1.14.6 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jeepney==0.7.0 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/20210721/latest-macos.yml b/caldp/20210721/latest-macos.yml new file mode 100644 index 0000000..b93962e --- /dev/null +++ b/caldp/20210721/latest-macos.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:42 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.7.5=hecd8cb5_1 +- certifi=2021.5.30=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.1.3=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.36.0=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/20210721/release_notes.md b/caldp/20210721/release_notes.md new file mode 100644 index 0000000..1e68973 --- /dev/null +++ b/caldp/20210721/release_notes.md @@ -0,0 +1,7 @@ +## 2021/7/21 - CALDP_20210721_CAL_final +### hstcal 2.7.2 + +## 2021/7/20 - CALDP_recovery_CAL_rc1 +### hstcal 2.7.2 +### drizzlepac 3.2.1 + diff --git a/caldp/latest/CALDP_20210721_CAL_linux_py36_final.yml b/caldp/latest/CALDP_20210721_CAL_linux_py36_final.yml new file mode 100644 index 0000000..42afdf7 --- /dev/null +++ b/caldp/latest/CALDP_20210721_CAL_linux_py36_final.yml @@ -0,0 +1,110 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:05 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- _openmp_mutex=4.5=1_gnu +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.7.5=h06a4308_1 +- certifi=2021.5.30=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- ld_impl_linux-64=2.35.1=h7274673_9 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.3.0=h5101ec6_17 +- libgfortran-ng=7.5.0=ha8ba4b0_17 +- libgfortran4=7.5.0=ha8ba4b0_17 +- libgomp=9.3.0=h5101ec6_17 +- libstdcxx-ng=9.3.0=hd4cf53a_17 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.1.3=py36h06a4308_0 +- python=3.6.13=h12debd9_1 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.36.0=hc218d9a_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - cffi==1.14.6 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jeepney==0.7.0 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/latest/CALDP_20210721_CAL_macos_py36_final.yml b/caldp/latest/CALDP_20210721_CAL_macos_py36_final.yml new file mode 100644 index 0000000..b93962e --- /dev/null +++ b/caldp/latest/CALDP_20210721_CAL_macos_py36_final.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:42 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.7.5=hecd8cb5_1 +- certifi=2021.5.30=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.1.3=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.36.0=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/latest/README.md b/caldp/latest/README.md new file mode 100644 index 0000000..f9273b3 --- /dev/null +++ b/caldp/latest/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20210721/latest-linux.yml +$ conda env create -n caldp_20210721 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20210721 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/latest/dev/CALDP_recovery_CAL_linux_py36_rc1.yml b/caldp/latest/dev/CALDP_recovery_CAL_linux_py36_rc1.yml new file mode 100644 index 0000000..3a2453d --- /dev/null +++ b/caldp/latest/dev/CALDP_recovery_CAL_linux_py36_rc1.yml @@ -0,0 +1,110 @@ +# delivery_name: CALDP_recovery_CAL_rc1 +# creation_time: Tue Jul 20 10:34:00 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- _openmp_mutex=4.5=1_gnu +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.7.5=h06a4308_1 +- certifi=2021.5.30=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- ld_impl_linux-64=2.35.1=h7274673_9 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.3.0=h5101ec6_17 +- libgfortran-ng=7.5.0=ha8ba4b0_17 +- libgfortran4=7.5.0=ha8ba4b0_17 +- libgomp=9.3.0=h5101ec6_17 +- libstdcxx-ng=9.3.0=hd4cf53a_17 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.1.3=py36h06a4308_0 +- python=3.6.13=h12debd9_1 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.36.0=hc218d9a_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - cffi==1.14.6 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jeepney==0.7.0 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/latest/dev/CALDP_recovery_CAL_macos_py36_rc1.yml b/caldp/latest/dev/CALDP_recovery_CAL_macos_py36_rc1.yml new file mode 100644 index 0000000..3306bed --- /dev/null +++ b/caldp/latest/dev/CALDP_recovery_CAL_macos_py36_rc1.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_recovery_CAL_rc1 +# creation_time: Tue Jul 20 10:31:43 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.7.5=hecd8cb5_1 +- certifi=2021.5.30=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.1.3=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.36.0=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/latest/latest-linux.yml b/caldp/latest/latest-linux.yml new file mode 100644 index 0000000..42afdf7 --- /dev/null +++ b/caldp/latest/latest-linux.yml @@ -0,0 +1,110 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:05 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- _openmp_mutex=4.5=1_gnu +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.7.5=h06a4308_1 +- certifi=2021.5.30=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- ld_impl_linux-64=2.35.1=h7274673_9 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.3.0=h5101ec6_17 +- libgfortran-ng=7.5.0=ha8ba4b0_17 +- libgfortran4=7.5.0=ha8ba4b0_17 +- libgomp=9.3.0=h5101ec6_17 +- libstdcxx-ng=9.3.0=hd4cf53a_17 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.1.3=py36h06a4308_0 +- python=3.6.13=h12debd9_1 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.36.0=hc218d9a_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - cffi==1.14.6 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jeepney==0.7.0 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/latest/latest-macos.yml b/caldp/latest/latest-macos.yml new file mode 100644 index 0000000..b93962e --- /dev/null +++ b/caldp/latest/latest-macos.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:42 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.7.5=hecd8cb5_1 +- certifi=2021.5.30=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.1.3=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.36.0=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/latest/release_notes.md b/caldp/latest/release_notes.md new file mode 100644 index 0000000..1e68973 --- /dev/null +++ b/caldp/latest/release_notes.md @@ -0,0 +1,7 @@ +## 2021/7/21 - CALDP_20210721_CAL_final +### hstcal 2.7.2 + +## 2021/7/20 - CALDP_recovery_CAL_rc1 +### hstcal 2.7.2 +### drizzlepac 3.2.1 + diff --git a/caldp/stable/CALDP_20210721_CAL_linux_py36_final.yml b/caldp/stable/CALDP_20210721_CAL_linux_py36_final.yml new file mode 100644 index 0000000..42afdf7 --- /dev/null +++ b/caldp/stable/CALDP_20210721_CAL_linux_py36_final.yml @@ -0,0 +1,110 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:05 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- _openmp_mutex=4.5=1_gnu +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.7.5=h06a4308_1 +- certifi=2021.5.30=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- ld_impl_linux-64=2.35.1=h7274673_9 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.3.0=h5101ec6_17 +- libgfortran-ng=7.5.0=ha8ba4b0_17 +- libgfortran4=7.5.0=ha8ba4b0_17 +- libgomp=9.3.0=h5101ec6_17 +- libstdcxx-ng=9.3.0=hd4cf53a_17 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.1.3=py36h06a4308_0 +- python=3.6.13=h12debd9_1 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.36.0=hc218d9a_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - cffi==1.14.6 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jeepney==0.7.0 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/stable/CALDP_20210721_CAL_macos_py36_final.yml b/caldp/stable/CALDP_20210721_CAL_macos_py36_final.yml new file mode 100644 index 0000000..b93962e --- /dev/null +++ b/caldp/stable/CALDP_20210721_CAL_macos_py36_final.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:42 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.7.5=hecd8cb5_1 +- certifi=2021.5.30=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.1.3=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.36.0=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/stable/README.md b/caldp/stable/README.md new file mode 100644 index 0000000..f9273b3 --- /dev/null +++ b/caldp/stable/README.md @@ -0,0 +1,49 @@ +# Installing +Currently, conda is required to manage installation of the environment. A fresh installation of Anaconda3 or Miniconda3is not required for each HCALDP release, however. An existing conda installation may be used. The method described here + allows for multiple, entirely segregated, pipeline installations. + +A `bash`-compatible shell is required for all steps below. + +Python dependencies are taken directly from PyPI or development repositories as needed, so conda's ability to install hybrid conda/pip environments from a YAMLspecification is used. This requires first downloading the specification file and then creating the environment with it. + +## For existing conda installations: + +### Install the pipeline environment +``` +$ curl -O https://ssb.stsci.edu/releases/caldp/20210721/latest-linux.yml +$ conda env create -n caldp_20210721 --file latest-linux.yml +``` +### Activate the pipeline environment + +``` +$ source activate caldp_20210721 +``` + +Each new delivery iteration of the calibration environmentwill need to be installed using the above commands. + +------ + +## If conda is not yet installed + +If the conda tool is not available on the target system, it will need to be +installed before the calibration environment can be installed. + +### Installing conda + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**Miniconda:** + +``` +$ wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.2-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/caldp/stable/dev/CALDP_recovery_CAL_linux_py36_rc1.yml b/caldp/stable/dev/CALDP_recovery_CAL_linux_py36_rc1.yml new file mode 100644 index 0000000..3a2453d --- /dev/null +++ b/caldp/stable/dev/CALDP_recovery_CAL_linux_py36_rc1.yml @@ -0,0 +1,110 @@ +# delivery_name: CALDP_recovery_CAL_rc1 +# creation_time: Tue Jul 20 10:34:00 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- _openmp_mutex=4.5=1_gnu +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.7.5=h06a4308_1 +- certifi=2021.5.30=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- ld_impl_linux-64=2.35.1=h7274673_9 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.3.0=h5101ec6_17 +- libgfortran-ng=7.5.0=ha8ba4b0_17 +- libgfortran4=7.5.0=ha8ba4b0_17 +- libgomp=9.3.0=h5101ec6_17 +- libstdcxx-ng=9.3.0=hd4cf53a_17 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.1.3=py36h06a4308_0 +- python=3.6.13=h12debd9_1 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.36.0=hc218d9a_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - cffi==1.14.6 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jeepney==0.7.0 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/stable/dev/CALDP_recovery_CAL_macos_py36_rc1.yml b/caldp/stable/dev/CALDP_recovery_CAL_macos_py36_rc1.yml new file mode 100644 index 0000000..3306bed --- /dev/null +++ b/caldp/stable/dev/CALDP_recovery_CAL_macos_py36_rc1.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_recovery_CAL_rc1 +# creation_time: Tue Jul 20 10:31:43 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.7.5=hecd8cb5_1 +- certifi=2021.5.30=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.1.3=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.36.0=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - git+https://github.com/spacetelescope/drizzlepac@3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/stable/latest-linux.yml b/caldp/stable/latest-linux.yml new file mode 100644 index 0000000..42afdf7 --- /dev/null +++ b/caldp/stable/latest-linux.yml @@ -0,0 +1,110 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:05 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- _libgcc_mutex=0.1=main +- _openmp_mutex=4.5=1_gnu +- bzip2=1.0.8=h7b6447c_0 +- ca-certificates=2021.7.5=h06a4308_1 +- certifi=2021.5.30=py36h06a4308_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- ld_impl_linux-64=2.35.1=h7274673_9 +- libffi=3.3=he6710b0_2 +- libgcc=7.2.0=h69d50b8_2 +- libgcc-ng=9.3.0=h5101ec6_17 +- libgfortran-ng=7.5.0=ha8ba4b0_17 +- libgfortran4=7.5.0=ha8ba4b0_17 +- libgomp=9.3.0=h5101ec6_17 +- libstdcxx-ng=9.3.0=hd4cf53a_17 +- ncurses=6.2=he6710b0_1 +- openssl=1.1.1k=h27cfd23_0 +- pip=21.1.3=py36h06a4308_0 +- python=3.6.13=h12debd9_1 +- readline=8.1=h27cfd23_0 +- setuptools=52.0.0=py36h06a4308_0 +- sqlite=3.36.0=hc218d9a_0 +- tk=8.6.10=hbc83047_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h7b6447c_0 +- zlib=1.2.11=h7b6447c_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - cffi==1.14.6 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cryptography==3.4.7 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jeepney==0.7.0 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pycparser==2.20 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - secretstorage==3.3.1 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/stable/latest-macos.yml b/caldp/stable/latest-macos.yml new file mode 100644 index 0000000..b93962e --- /dev/null +++ b/caldp/stable/latest-macos.yml @@ -0,0 +1,99 @@ +# delivery_name: CALDP_20210721_CAL_final +# creation_time: Wed Jul 21 21:44:42 2021 +# conda_version: 4.10.3 +# condabuild_version: 3.18.11 +channels: +- defaults +- https://ssb.stsci.edu/astroconda +- https://ssb.stsci.edu/astroconda-staging +dependencies: +- bzip2=1.0.8=h1de35cc_0 +- ca-certificates=2021.7.5=hecd8cb5_1 +- certifi=2021.5.30=py36hecd8cb5_0 +- cfitsio=3.470=1 +- fitsverify=4.18=13 +- hstcal=2.7.2.dev0+gd395b8b8=0 +- libcxx=10.0.0=1 +- libffi=3.3=hb1e8313_2 +- libgcc=4.8.5=hdbeacc1_10 +- libgfortran=3.0.1=h93005f0_2 +- ncurses=6.2=h0a44026_1 +- openssl=1.1.1k=h9ed2024_0 +- pip=21.1.3=py36hecd8cb5_0 +- python=3.6.13=h88f2d9e_0 +- readline=8.1=h9ed2024_0 +- setuptools=52.0.0=py36hecd8cb5_0 +- sqlite=3.36.0=hce871da_0 +- tk=8.6.10=hb0a8c7a_0 +- wheel=0.36.2=pyhd3eb1b0_0 +- xz=5.2.5=h1de35cc_0 +- zlib=1.2.11=h1de35cc_3 +- pip: + - acstools==3.3.1 + - astropy==4.1 + - astroquery==0.4.3 + - beautifulsoup4==4.9.3 + - bokeh==2.3.3 + - calcos==3.3.10 + - charset-normalizer==2.0.3 + - costools==1.2.3 + - crds==10.1.0 + - cycler==0.10.0 + - decorator==4.4.2 + - drizzlepac==3.2.1 + - filelock==3.0.12 + - fitsblender==0.3.6 + - html5lib==1.1 + - idna==3.2 + - imageio==2.9.0 + - importlib-metadata==4.6.1 + - jinja2==3.0.1 + - joblib==1.0.1 + - keyring==23.0.1 + - kiwisolver==1.3.1 + - lxml==4.6.3 + - markupsafe==2.0.1 + - matplotlib==3.3.4 + - mimeparse==0.1.3 + - networkx==2.5.1 + - nictools==1.1.5 + - numexpr==2.7.3 + - numpy==1.19.5 + - packaging==21.0 + - pandas==1.1.5 + - parsley==1.3 + - photutils==1.0.2 + - pillow==8.3.1 + - pyparsing==2.4.7 + - pypdf2==1.26.0 + - python-dateutil==2.8.2 + - pytz==2021.1 + - pyvo==1.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - requests==2.26.0 + - scikit-image==0.17.2 + - scikit-learn==0.24.2 + - scipy==1.5.4 + - six==1.16.0 + - soupsieve==2.2.1 + - spherical-geometry==1.2.20 + - stistools==1.4.1 + - stregion==1.1.6 + - stsci-image==2.3.3 + - stsci-imagestats==1.6.2 + - stsci-skypac==1.0.5 + - stsci-stimage==0.2.4 + - stsci-tools==3.6.0 + - stwcs==1.6.1 + - tables==3.6.1 + - threadpoolctl==2.2.0 + - tifffile==2020.9.3 + - tornado==6.1 + - tweakwcs==0.7.2 + - typing-extensions==3.10.0.0 + - urllib3==1.26.6 + - webencodings==0.5.1 + - wfc3tools==1.3.5 + - wfpc2tools==1.0.5 + - zipp==3.5.0 diff --git a/caldp/stable/release_notes.md b/caldp/stable/release_notes.md new file mode 100644 index 0000000..1e68973 --- /dev/null +++ b/caldp/stable/release_notes.md @@ -0,0 +1,7 @@ +## 2021/7/21 - CALDP_20210721_CAL_final +### hstcal 2.7.2 + +## 2021/7/20 - CALDP_recovery_CAL_rc1 +### hstcal 2.7.2 +### drizzlepac 3.2.1 + diff --git a/da/3/da-3-linux-py27.final.txt b/da/3/da-3-linux-py27.final.txt new file mode 100644 index 0000000..fb76673 --- /dev/null +++ b/da/3/da-3-linux-py27.final.txt @@ -0,0 +1,119 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/asdf-1.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/astroimtools-0.1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/astropy-1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/cairo-1.14.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/configparser-3.5.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/dill-0.2.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/entrypoints-0.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/fontconfig-2.12.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/freeglut-2.8.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/ginga-2.6.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/glib-2.50.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/glue-vispy-viewers-0.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/glueviz-0.9.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/imexam-0.6.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/ipykernel-4.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jinja2-2.9.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jupyter_client-4.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jupyter_core-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libsodium-1.0.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/mistune-0.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/mosviz-0.0.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/nbconvert-4.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/nbformat-4.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/notebook-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/numpy-1.11.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pandas-0.19.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/path.py-10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pathlib2-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/photutils-0.3-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/plotly-1.12.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/py-1.4.32-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pyopengl-3.1.1a1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pyqt-5.6.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/pyqtgraph-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pyzmq-16.0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/qtconsole-4.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/qtpy-1.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/requests-2.12.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/scandir-1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/scipy-0.18.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/specutils-0.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/specviz-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/stginga-0.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/stsci-data-analysis-2.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/terminado-0.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/xlrd-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/zeromq-4.1.5-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/da/3/da-3-linux-py35.final.txt b/da/3/da-3-linux-py35.final.txt new file mode 100644 index 0000000..0c9212a --- /dev/null +++ b/da/3/da-3-linux-py35.final.txt @@ -0,0 +1,106 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/asdf-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/astroimtools-0.1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/astropy-1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/dill-0.2.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/entrypoints-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/fontconfig-2.12.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/freeglut-2.8.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/ginga-2.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/glib-2.50.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/glue-vispy-viewers-0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/glueviz-0.9.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/imexam-0.6.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/ipykernel-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jinja2-2.9.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jupyter_client-4.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/jupyter_core-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libsodium-1.0.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/mistune-0.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/mosviz-0.0.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/nbconvert-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/nbformat-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/notebook-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/numpy-1.11.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pandas-0.19.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/path.py-10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/photutils-0.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/plotly-1.12.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/py-1.4.32-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pyopengl-3.1.1a1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pyqt-5.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/pyqtgraph-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/pyzmq-16.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/qtconsole-4.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/qtpy-1.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/requests-2.12.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/scipy-0.18.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/specutils-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/specviz-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/stginga-0.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/linux-64/stsci-data-analysis-2.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/terminado-0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/xlrd-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/zeromq-4.1.5-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/da/3/da-3-osx-py27.final.txt b/da/3/da-3-osx-py27.final.txt new file mode 100644 index 0000000..6570426 --- /dev/null +++ b/da/3/da-3-osx-py27.final.txt @@ -0,0 +1,102 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/appnope-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/asdf-1.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/astroimtools-0.1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/astropy-1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/configparser-3.5.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/dill-0.2.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/entrypoints-0.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/ginga-2.6.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/glue-vispy-viewers-0.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/glueviz-0.9.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/imexam-0.6.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/ipykernel-4.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jinja2-2.9.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jupyter_client-4.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jupyter_core-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/mistune-0.7.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/mosviz-0.0.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/nbconvert-4.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/nbformat-4.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/notebook-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/numpy-1.11.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pandas-0.19.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/path.py-10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pathlib2-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/photutils-0.3-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pillow-4.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/plotly-1.12.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/py-1.4.32-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pyopengl-3.1.1a1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pyqt-5.6.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/pyqtgraph-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/python.app-1.2-py27_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pyzmq-16.0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/qt-5.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/qtconsole-4.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/qtpy-1.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/requests-2.12.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/scandir-1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/scipy-0.18.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/specutils-0.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/specviz-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/stginga-0.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/stsci-data-analysis-2.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/terminado-0.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/xlrd-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/da/3/da-3-osx-py35.final.txt b/da/3/da-3-osx-py35.final.txt new file mode 100644 index 0000000..198dacd --- /dev/null +++ b/da/3/da-3-osx-py35.final.txt @@ -0,0 +1,92 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/appnope-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/asdf-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/astroimtools-0.1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/astropy-1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/dill-0.2.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/entrypoints-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/ginga-2.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/glue-vispy-viewers-0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/glueviz-0.9.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/imexam-0.6.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/ipykernel-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jinja2-2.9.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jupyter_client-4.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/jupyter_core-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/mistune-0.7.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/mosviz-0.0.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/nbconvert-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/nbformat-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/notebook-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/numpy-1.11.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pandas-0.19.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/path.py-10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/photutils-0.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pillow-4.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/plotly-1.12.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/py-1.4.32-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pyopengl-3.1.1a1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pyqt-5.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/pyqtgraph-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/python.app-1.2-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/pyzmq-16.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/qt-5.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/qtconsole-4.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/qtpy-1.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/requests-2.12.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/scipy-0.18.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/specutils-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/specviz-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/stginga-0.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/astroconda/osx-64/stsci-data-analysis-2.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/terminado-0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/xlrd-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/3/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/da/3/dev/da-3-linux-py27.0.txt b/da/3/dev/da-3-linux-py27.0.txt new file mode 100644 index 0000000..d2ab2f2 --- /dev/null +++ b/da/3/dev/da-3-linux-py27.0.txt @@ -0,0 +1,119 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroimtools-0.1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/configparser-3.5.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dill-0.2.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freeglut-2.8.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/ginga-2.6.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/glue-vispy-viewers-0.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/glueviz-0.9.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/imexam-0.6.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipykernel-4.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jupyter_client-4.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jupyter_core-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libsodium-1.0.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mistune-0.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/mosviz-0.0.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nbconvert-4.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nbformat-4.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/notebook-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.3-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/plotly-1.12.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.32-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopengl-3.1.1a1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqtgraph-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyzmq-16.0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qtconsole-4.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qtpy-1.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/specutils-0.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/specviz-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stginga-0.1.3-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-data-analysis-2.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/terminado-0.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xlrd-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zeromq-4.1.5-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/da/3/dev/da-3-linux-py35.0.txt b/da/3/dev/da-3-linux-py35.0.txt new file mode 100644 index 0000000..064add2 --- /dev/null +++ b/da/3/dev/da-3-linux-py35.0.txt @@ -0,0 +1,106 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroimtools-0.1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dill-0.2.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freeglut-2.8.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/ginga-2.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/glue-vispy-viewers-0.6-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/glueviz-0.9.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/imexam-0.6.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipykernel-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jupyter_client-4.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jupyter_core-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libsodium-1.0.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mistune-0.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/mosviz-0.0.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nbconvert-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nbformat-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/notebook-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/plotly-1.12.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.32-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopengl-3.1.1a1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqtgraph-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyzmq-16.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qtconsole-4.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qtpy-1.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/specutils-0.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/specviz-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stginga-0.1.3-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-data-analysis-2.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/terminado-0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xlrd-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zeromq-4.1.5-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/da/3/dev/da-3-osx-py27.0.txt b/da/3/dev/da-3-osx-py27.0.txt new file mode 100644 index 0000000..c2c5c21 --- /dev/null +++ b/da/3/dev/da-3-osx-py27.0.txt @@ -0,0 +1,102 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroimtools-0.1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/configparser-3.5.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dill-0.2.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/ginga-2.6.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/glue-vispy-viewers-0.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/glueviz-0.9.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/imexam-0.6.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipykernel-4.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jupyter_client-4.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jupyter_core-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mistune-0.7.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/mosviz-0.0.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nbconvert-4.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nbformat-4.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/notebook-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.3-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/plotly-1.12.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.32-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopengl-3.1.1a1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqtgraph-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python.app-1.2-py27_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyzmq-16.0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qtconsole-4.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qtpy-1.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/specutils-0.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/specviz-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stginga-0.1.3-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-data-analysis-2.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/terminado-0.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xlrd-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/da/3/dev/da-3-osx-py35.0.txt b/da/3/dev/da-3-osx-py35.0.txt new file mode 100644 index 0000000..2ca61ee --- /dev/null +++ b/da/3/dev/da-3-osx-py35.0.txt @@ -0,0 +1,92 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroimtools-0.1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dill-0.2.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/ginga-2.6.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/glue-vispy-viewers-0.6-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/glueviz-0.9.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/imexam-0.6.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipykernel-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jupyter_client-4.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jupyter_core-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mistune-0.7.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/mosviz-0.0.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nbconvert-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nbformat-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/notebook-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/plotly-1.12.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.32-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopengl-3.1.1a1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqtgraph-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python.app-1.2-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyzmq-16.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qtconsole-4.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qtpy-1.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/specutils-0.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/specviz-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stginga-0.1.3-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-data-analysis-2.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/terminado-0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xlrd-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/da/3/release_notes.md b/da/3/release_notes.md new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/da/3/release_notes.md diff --git a/da/4/README.md b/da/4/README.md new file mode 100644 index 0000000..86ea03e --- /dev/null +++ b/da/4/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each DA release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n da-4 --file http://ssb.stsci.edu/releases/da/4/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n da-4 --file http://ssb.stsci.edu/releases/da/4/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh +$ bash Anaconda3-5.0.1-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.30-Linux-x86_64.sh +$ bash Miniconda3-4.3.30-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n da-4 --file http://ssb.stsci.edu/releases/da/4/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate da-4 +``` diff --git a/da/4/da-4-linux-py27.final.txt b/da/4/da-4-linux-py27.final.txt new file mode 100644 index 0000000..1ba12b2 --- /dev/null +++ b/da/4/da-4-linux-py27.final.txt @@ -0,0 +1,145 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/asdf-1.3.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/asteval-0.9.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/astroimtools-0.1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/astropy-2.0.1-np113py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bkcharts-0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bleach-1.5.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bokeh-0.12.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cairo-1.14.8-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/certifi-2016.2.28-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cloudpickle-0.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/configparser-3.5.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/cubeviz-0.0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cython-0.26-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dask-0.15.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dill-0.2.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/docopt-0.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/entrypoints-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/freeglut-2.8.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/futures-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/ginga-2.6.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-core-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-ginga-0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-vispy-viewers-0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glueviz-0.12.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/gwcs-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/h5py-2.7.0-np113py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/html5lib-0.9999999-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/imexam-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipykernel-4.6.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jsonschema-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jupyter_client-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jupyter_core-4.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libsodium-1.0.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/markupsafe-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/matplotlib-2.0.2-np113py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/mistune-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/mosviz-0.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/nbconvert-5.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/nbformat-4.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/notebook-5.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/numpy-1.13.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pandas-0.20.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pandocfilters-1.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/partd-0.3.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pathlib2-2.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/photutils-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pillow-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/plotly-2.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/prompt_toolkit-1.0.15-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ptyprocess-0.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/py-expression-eval-0.3.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyopengl-3.1.1a1-np113py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyparsing-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/pyqtgraph-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pytest-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/python-dateutil-2.6.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pywavelets-0.5.2-np113py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyzmq-16.0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qt-5.6.2-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qtconsole-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qtpy-1.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scikit-image-0.13.0-np113py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scikit-learn-0.19.0-np113py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scipy-0.19.1-np113py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/semantic_version-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/setuptools-36.4.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/specutils-0.2.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/specviz-0.4.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/spherical-geometry-1.0.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ssl_match_hostname-3.5.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/stginga-0.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/stsci-data-analysis-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/terminado-0.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/testpath-0.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/toolz-0.8.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/tornado-4.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/xlrd-1.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/zeromq-4.1.5-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/zlib-1.2.11-0.tar.bz2
\ No newline at end of file diff --git a/da/4/da-4-linux-py35.final.txt b/da/4/da-4-linux-py35.final.txt new file mode 100644 index 0000000..6eb3a24 --- /dev/null +++ b/da/4/da-4-linux-py35.final.txt @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/asdf-1.3.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/asteval-0.9.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/astroimtools-0.1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/astropy-2.0.1-np113py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bleach-1.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/certifi-2016.2.28-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cloudpickle-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/cubeviz-0.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dill-0.2.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/docopt-0.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/entrypoints-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/freeglut-2.8.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/ginga-2.6.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-core-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-ginga-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-vispy-viewers-0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glueviz-0.12.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/gwcs-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/h5py-2.7.0-np113py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/html5lib-0.9999999-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/imexam-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipykernel-4.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jsonschema-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jupyter_client-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jupyter_core-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libsodium-1.0.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/matplotlib-2.0.2-np113py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/mistune-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/mosviz-0.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/nbconvert-5.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/nbformat-4.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/notebook-5.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/numpy-1.13.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pandas-0.20.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pandocfilters-1.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/photutils-0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/plotly-2.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/py-expression-eval-0.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyopengl-3.1.1a1-np113py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/pyqtgraph-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/python-dateutil-2.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pywavelets-0.5.2-np113py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyzmq-16.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qt-5.6.2-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qtconsole-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qtpy-1.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scikit-image-0.13.0-np113py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scikit-learn-0.19.0-np113py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scipy-0.19.1-np113py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/specutils-0.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/specviz-0.4.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/spherical-geometry-1.0.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/stginga-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/stsci-data-analysis-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/terminado-0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/testpath-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/xlrd-1.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/zeromq-4.1.5-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/zlib-1.2.11-0.tar.bz2
\ No newline at end of file diff --git a/da/4/da-4-linux-py36.final.txt b/da/4/da-4-linux-py36.final.txt new file mode 100644 index 0000000..aef87c8 --- /dev/null +++ b/da/4/da-4-linux-py36.final.txt @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/asdf-1.3.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/asteval-0.9.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/astroimtools-0.1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/astropy-2.0.1-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bleach-1.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/certifi-2016.2.28-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cloudpickle-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/cubeviz-0.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/decorator-4.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dill-0.2.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/docopt-0.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/entrypoints-0.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/freeglut-2.8.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/ginga-2.6.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-core-0.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-ginga-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-vispy-viewers-0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glueviz-0.12.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/gwcs-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/h5py-2.7.0-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/html5lib-0.9999999-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/imexam-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipykernel-4.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jupyter_client-5.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jupyter_core-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libsodium-1.0.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/matplotlib-2.0.2-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/mistune-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/mosviz-0.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/nbconvert-5.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/nbformat-4.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/networkx-1.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/notebook-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/numpy-1.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pandas-0.20.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pandocfilters-1.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pexpect-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/photutils-0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/plotly-2.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/py-expression-eval-0.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyopengl-3.1.1a1-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/pyqtgraph-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/python-dateutil-2.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pywavelets-0.5.2-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyzmq-16.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qt-5.6.2-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qtconsole-4.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qtpy-1.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scikit-image-0.13.0-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scikit-learn-0.19.0-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scipy-0.19.1-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/specutils-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/specviz-0.4.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/spherical-geometry-1.0.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/stginga-0.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/stsci-data-analysis-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/terminado-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/testpath-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/xlrd-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/zeromq-4.1.5-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/zlib-1.2.11-0.tar.bz2
\ No newline at end of file diff --git a/da/4/da-4-osx-py27.final.txt b/da/4/da-4-osx-py27.final.txt new file mode 100644 index 0000000..efe9a46 --- /dev/null +++ b/da/4/da-4-osx-py27.final.txt @@ -0,0 +1,172 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/appnope-0.1.0-py27hb466136_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/asdf-1.3.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/asn1crypto-0.23.0-py27h862e517_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/asteval-0.9.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/astroimtools-0.1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/astropy-2.0.3-py27h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/attrs-17.3.0-py27h04bc18c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/backports-1.0-py27hb4f9756_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/backports.functools_lru_cache-1.4-py27h2aca819_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/backports.shutil_get_terminal_size-1.0.0-py27hc9115de_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/backports_abc-0.5-py27h6972548_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/bleach-2.1.1-py27h2415e5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/bokeh-0.12.13-py27h5233db4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/certifi-2017.11.5-py27hfa9a1c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cffi-1.11.2-py27h21b8a49_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/chardet-3.0.4-py27h2842e91_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/click-6.7-py27h2b86a94_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cloudpickle-0.5.2-py27he962bb2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/configparser-3.5.0-py27hc7edf1b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/coverage-4.4.2-py27hf37a882_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cryptography-2.1.4-py27hdbc5e8f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/cubeviz-0.0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cycler-0.10.0-py27hfc73c78_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cython-0.27.3-py27h6429b90_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dask-0.16.0-py27h0cfea73_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dask-core-0.16.0-py27h3e6bc05_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dbus-1.10.22-h50d9ad6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dill-0.2.7.1-py27hc0d316d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/distributed-1.20.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/docopt-0.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/entrypoints-0.2.3-py27hd680fb1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/enum34-1.1.6-py27hf475452_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/expat-2.2.5-hb8e80ba_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/funcsigs-1.0.2-py27hb9f6266_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/functools32-3.2.3.2-py27h8ceab06_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/futures-3.2.0-py27h1b80678_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/ginga-2.6.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/glib-2.53.6-h33f6a65_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-core-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-ginga-0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-vispy-viewers-0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glueviz-0.12.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/gwcs-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/h5py-2.7.1-py27h75626f5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/heapdict-1.0.0-py27hb5e74ad_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/html5lib-1.0.1-py27h5233db4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/hypothesis-3.38.5-py27h3e2e078_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/idna-2.6-py27hedea723_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/imageio-2.2.0-py27h37746d9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/imexam-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipaddress-1.0.18-py27h5b9a5b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipykernel-4.7.0-py27h5233db4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipython-5.4.1-py27h2b3d779_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipython_genutils-0.2.0-py27h8b9a179_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jinja2-2.10-py27h70b8dc5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jsonschema-2.6.0-py27hd9b497e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jupyter_client-5.1.0-py27hfaf569a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jupyter_core-4.4.0-py27h5ea6ba4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libpng-1.6.32-hd1e8b91_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libsodium-1.0.15-hd9e47c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/locket-0.2.0-py27ha10513d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/markupsafe-1.0-py27hd3c86fa_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/matplotlib-2.1.1-py27hb768455_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/mistune-0.8.1-py27hd7d4354_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/mosviz-0.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/msgpack-python-0.4.8-py27h635ded4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/nbconvert-5.3.1-py27h6455e4c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/nbformat-4.4.0-py27hddc86d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/networkx-2.0-py27h2503496_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/notebook-5.2.2-py27h1f6af2b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/numpy-1.13.3-py27h62f9060_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/olefile-0.44-py27h73ba740_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandas-0.21.1-py27h1cb45b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandoc-1.19.2.1-ha5e8f32_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandocfilters-1.4.2-py27hed78c4e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/partd-0.3.8-py27h7560dbf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pathlib2-2.3.0-py27he09da1e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pcre-8.41-hfb6ab37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pexpect-4.3.0-py27hce281ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/photutils-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pickleshare-0.7.4-py27h37e3d41_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pillow-4.3.0-py27hb485eaf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pip-9.0.1-py27h1567d89_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/plotly-2.2.2-py27h596dad6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pluggy-0.6.0-py27had36429_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/prompt_toolkit-1.0.15-py27h4a7b9c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/psutil-5.4.1-py27h533f8c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ptyprocess-0.5.2-py27h70f6364_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/py-1.5.2-py27he6783ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/py-expression-eval-0.3.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pycparser-2.18-py27h0d28d88_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pygments-2.2.0-py27h1a556bb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pympler-0.5-py27hf3ee101_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/pyopengl-3.1.1a1-np113py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyopenssl-17.5.0-py27hfda213f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyparsing-2.2.0-py27h5bb6aaf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyqt-5.6.0-py27hf21fe59_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/pyqtgraph-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pysocks-1.6.7-py27h1cff6a6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pytest-3.3.0-py27h42e2595_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python-2.7.14-hde5916a_29.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python-dateutil-2.6.1-py27hd56c96b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python.app-2-py27hf2d5e94_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pytz-2017.3-py27h803c07a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pywavelets-0.5.2-py27hd99e88a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyyaml-3.12-py27ha7932d0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyzmq-16.0.3-py27h91ccc67_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qt-5.6.2-h9975529_14.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qtconsole-4.3.1-py27hdc90b4f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qtpy-1.3.1-py27h39159f8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/requests-2.18.4-py27h9b2b37c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scandir-1.6-py27h97aa1ee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scikit-image-0.13.0-py27h03e84e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scikit-learn-0.19.1-py27h9788993_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scipy-1.0.0-py27h793f721_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/semantic_version-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/setuptools-36.5.0-py27h2a45cec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/simplegeneric-0.8.1-py27h6db5e31_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/singledispatch-3.4.0.3-py27he22c18d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sip-4.18.1-py27h6300f65_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/six-1.11.0-py27h7252ba3_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sortedcontainers-1.5.7-py27h322dbbf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/specutils-0.2.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/specviz-0.4.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/spherical-geometry-1.0.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sqlite-3.20.1-h7e4c145_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ssl_match_hostname-3.5.0.1-py27h8780752_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/stginga-0.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/stsci-data-analysis-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/subprocess32-3.2.7-py27h24b2887_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tblib-1.3.2-py27ha684fc4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/terminado-0.6-py27he40bf16_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/testpath-0.3.1-py27h72d81a5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/toolz-0.8.2-py27h27228c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tornado-4.5.2-py27h29aec9e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/traitlets-4.3.2-py27hcf08151_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/urllib3-1.22-py27hc3787e9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/wcwidth-0.1.7-py27h817c265_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/webencodings-0.5.1-py27h19a9f58_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/wheel-0.30.0-py27h677a027_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/xlrd-1.1.0-py27hbd41ed1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zeromq-4.2.2-ha360ad0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zict-0.1.3-py27h5fff8b1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/zope-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zope.interface-4.4.3-py27h03e767a_0.tar.bz2
\ No newline at end of file diff --git a/da/4/da-4-osx-py35.final.txt b/da/4/da-4-osx-py35.final.txt new file mode 100644 index 0000000..17917b9 --- /dev/null +++ b/da/4/da-4-osx-py35.final.txt @@ -0,0 +1,159 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/asdf-1.3.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/asn1crypto-0.23.0-py35ha0e154b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/asteval-0.9.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/astroimtools-0.1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/astropy-2.0.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/attrs-17.3.0-py35hc219a11_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/bleach-2.1.1-py35hc581ebd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/certifi-2017.11.5-py35hd00889a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cffi-1.11.2-py35h5806a83_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cloudpickle-0.5.2-py35h61e9bcc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/coverage-4.4.2-py35h36907ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cryptography-2.1.4-py35hbbb57dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/cubeviz-0.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cython-0.27.3-py35h36d65b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dask-0.16.0-py35h14d4d8d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dask-core-0.16.0-py35h83ab50f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dbus-1.10.22-h50d9ad6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dill-0.2.7.1-py35h803b68c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/docopt-0.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/entrypoints-0.2.3-py35h837ec6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/expat-2.2.5-hb8e80ba_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/ginga-2.6.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/glib-2.53.6-h33f6a65_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-core-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-ginga-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-vispy-viewers-0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glueviz-0.12.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/gwcs-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/heapdict-1.0.0-py35h86051b3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/html5lib-1.0.1-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/hypothesis-3.38.5-py35h843401b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/imageio-2.2.0-py35h805106e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/imexam-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipykernel-4.7.0-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipython-6.2.1-py35h9470683_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jedi-0.11.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jupyter_client-5.1.0-py35hfe06ecd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jupyter_core-4.4.0-py35h4ad9194_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libpng-1.6.32-hd1e8b91_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libsodium-1.0.15-hd9e47c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/matplotlib-2.1.1-py35h2fb3e9e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/mistune-0.8.1-py35hb94c1e4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/mosviz-0.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/msgpack-python-0.4.8-py35h2751e37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/nbconvert-5.3.1-py35h63fb950_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/nbformat-4.4.0-py35h41c2038_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/networkx-2.0-py35hb193ae4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/notebook-5.2.2-py35hdbba414_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/numpy-1.13.3-py35hfd7066c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/olefile-0.44-py35h1f523c6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandas-0.21.1-py35h2c08c6b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandoc-1.19.2.1-ha5e8f32_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandocfilters-1.4.2-py35hff87490_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/parso-0.1.1-py35hbda7c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pcre-8.41-hfb6ab37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pexpect-4.3.0-py35h97d68c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/photutils-0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pillow-4.3.0-py35h4107478_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pip-9.0.1-py35h33ce766_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/plotly-2.2.2-py35h575bba0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/psutil-5.4.1-py35h02a2b6c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/py-1.5.2-py35h4d4d87d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/py-expression-eval-0.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pympler-0.5-py35hf41ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/pyopengl-3.1.1a1-np113py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyqt-5.6.0-py35hbd126f6_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/pyqtgraph-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pysocks-1.6.7-py35h3cfcbe1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pytest-3.3.0-py35hfa6e833_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python-3.5.4-he720263_23.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python-dateutil-2.6.1-py35h10515e0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python.app-2-py35he4d1c94_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pytz-2017.3-py35heeb7564_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyzmq-16.0.3-py35hab9903b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qt-5.6.2-h9975529_14.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qtconsole-4.3.1-py35hd6d667b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qtpy-1.3.1-py35h743f03e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scikit-image-0.13.0-py35hf7e7ad6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scikit-learn-0.19.1-py35h2b554eb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/setuptools-36.5.0-py35h52cde6a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/simplegeneric-0.8.1-py35h0a3d746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sip-4.18.1-py35h79e1f92_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sortedcontainers-1.5.7-py35h53913a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/specutils-0.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/specviz-0.4.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/spherical-geometry-1.0.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sqlite-3.20.1-h7e4c145_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/stginga-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/stsci-data-analysis-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/terminado-0.6-py35hf269ddc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/testpath-0.3.1-py35hf8009f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/toolz-0.8.2-py35h9767fb5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tornado-4.5.2-py35h4099233_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/webencodings-0.5.1-py35hcf8ebf9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/xlrd-1.1.0-py35h892fcf7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zeromq-4.2.2-ha360ad0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/zope-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zope.interface-4.4.3-py35hdbc5dd8_0.tar.bz2
\ No newline at end of file diff --git a/da/4/da-4-osx-py36.final.txt b/da/4/da-4-osx-py36.final.txt new file mode 100644 index 0000000..07c4e22 --- /dev/null +++ b/da/4/da-4-osx-py36.final.txt @@ -0,0 +1,159 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/asdf-1.3.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/asn1crypto-0.23.0-py36h782d450_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/asteval-0.9.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/astroimtools-0.1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/astropy-2.0.3-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/attrs-17.3.0-py36h9f37037_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/bleach-2.1.1-py36h27c13d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/certifi-2017.11.5-py36ha569be9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cffi-1.11.2-py36hd3e6348_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cloudpickle-0.5.2-py36h379c7bd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/coverage-4.4.2-py36h8d5022f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cryptography-2.1.4-py36h842514c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/cubeviz-0.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cython-0.27.3-py36h6ecb376_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dask-0.16.0-py36h40f4302_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dask-core-0.16.0-py36haa8de34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dbus-1.10.22-h50d9ad6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/decorator-4.1.2-py36h69a1b52_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dill-0.2.7.1-py36hdf89ffe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/distributed-1.20.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/docopt-0.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/entrypoints-0.2.3-py36hd81d71f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/expat-2.2.5-hb8e80ba_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/ginga-2.6.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/glib-2.53.6-h33f6a65_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-core-0.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-ginga-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-vispy-viewers-0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glueviz-0.12.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/gwcs-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/h5py-2.7.1-py36h39cdac5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/heapdict-1.0.0-py36h27a9ac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/html5lib-1.0.1-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/hypothesis-3.38.5-py36hcba0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/imageio-2.2.0-py36h5e01289_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/imexam-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipykernel-4.7.0-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipython-6.2.1-py36h3dda519_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jedi-0.11.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jupyter_client-5.1.0-py36hf6c435f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jupyter_core-4.4.0-py36h79cf704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libpng-1.6.32-hd1e8b91_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libsodium-1.0.15-hd9e47c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/matplotlib-2.1.1-py36h2fb3e9e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/mistune-0.8.1-py36h638d0ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/mosviz-0.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/msgpack-python-0.4.8-py36h46767b2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/nbconvert-5.3.1-py36h810822e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/nbformat-4.4.0-py36h827af21_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/networkx-2.0-py36hefccab9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/notebook-5.2.2-py36h124cd7f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/numpy-1.13.3-py36h2cdce51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/olefile-0.44-py36ha08bf50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandas-0.21.1-py36h2c08c6b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandoc-1.19.2.1-ha5e8f32_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandocfilters-1.4.2-py36h3b0b094_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/parso-0.1.1-py36hc90e01c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pcre-8.41-hfb6ab37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pexpect-4.3.0-py36h427ab81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/photutils-0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pillow-4.3.0-py36h96fe3d5_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pip-9.0.1-py36h1555ced_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/plotly-2.2.2-py36h097dc49_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/psutil-5.4.1-py36h907aff9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ptyprocess-0.5.2-py36he6521c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/py-1.5.2-py36ha69170d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/py-expression-eval-0.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pympler-0.5-py36hc2752d1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/pyopengl-3.1.1a1-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyopenssl-17.5.0-py36h51e4350_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyqt-5.6.0-py36he5c6137_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/pyqtgraph-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pysocks-1.6.7-py36hfa33cec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pytest-3.3.0-py36h707cbdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python-3.6.4-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python-dateutil-2.6.1-py36h86d2abb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python.app-2-py36h54569d5_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pytz-2017.3-py36hf0bf824_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyzmq-16.0.3-py36he48b5ad_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qt-5.6.2-h9975529_14.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qtconsole-4.3.1-py36hd96c0ff_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qtpy-1.3.1-py36h16bb863_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scikit-image-0.13.0-py36h398857d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scikit-learn-0.19.1-py36hffbff8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scipy-1.0.0-py36h1de22e9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/setuptools-36.5.0-py36h2134326_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/simplegeneric-0.8.1-py36he5b5b09_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sip-4.18.1-py36h2824476_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sortedcontainers-1.5.7-py36ha982688_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/specutils-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/specviz-0.4.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/spherical-geometry-1.0.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sqlite-3.20.1-h7e4c145_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/stginga-0.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/stsci-data-analysis-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/terminado-0.6-py36h656782e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/testpath-0.3.1-py36h625a49b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/toolz-0.8.2-py36h7b95164_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tornado-4.5.2-py36h468dda9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/webencodings-0.5.1-py36h3b9701d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/wheel-0.30.0-py36h5eb2c71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/xlrd-1.1.0-py36h336f4a2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zeromq-4.2.2-ha360ad0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/zope-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zope.interface-4.4.3-py36h74e83c9_0.tar.bz2
\ No newline at end of file diff --git a/da/4/latest-linux b/da/4/latest-linux new file mode 100644 index 0000000..aef87c8 --- /dev/null +++ b/da/4/latest-linux @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/asdf-1.3.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/asteval-0.9.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/astroimtools-0.1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/astropy-2.0.1-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bleach-1.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/certifi-2016.2.28-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cloudpickle-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/cubeviz-0.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/decorator-4.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/dill-0.2.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/docopt-0.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/entrypoints-0.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/freeglut-2.8.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/ginga-2.6.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-core-0.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-ginga-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glue-vispy-viewers-0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/glueviz-0.12.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/gwcs-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/h5py-2.7.0-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/html5lib-0.9999999-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/imexam-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipykernel-4.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jupyter_client-5.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/jupyter_core-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libsodium-1.0.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/matplotlib-2.0.2-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/mistune-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/mosviz-0.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/nbconvert-5.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/nbformat-4.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/networkx-1.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/notebook-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/numpy-1.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pandas-0.20.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pandocfilters-1.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pexpect-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/photutils-0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/plotly-2.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/py-expression-eval-0.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyopengl-3.1.1a1-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/pyqtgraph-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/python-dateutil-2.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pywavelets-0.5.2-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/pyzmq-16.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qt-5.6.2-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qtconsole-4.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/qtpy-1.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scikit-image-0.13.0-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scikit-learn-0.19.0-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/scipy-0.19.1-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/specutils-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/specviz-0.4.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/spherical-geometry-1.0.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/stginga-0.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/linux-64/stsci-data-analysis-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/terminado-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/testpath-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/xlrd-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/zeromq-4.1.5-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/linux-64/zlib-1.2.11-0.tar.bz2
\ No newline at end of file diff --git a/da/4/latest-osx b/da/4/latest-osx new file mode 100644 index 0000000..07c4e22 --- /dev/null +++ b/da/4/latest-osx @@ -0,0 +1,159 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/asdf-1.3.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/asn1crypto-0.23.0-py36h782d450_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/asteval-0.9.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/astroimtools-0.1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/astropy-2.0.3-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/attrs-17.3.0-py36h9f37037_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/bleach-2.1.1-py36h27c13d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/certifi-2017.11.5-py36ha569be9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cffi-1.11.2-py36hd3e6348_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cloudpickle-0.5.2-py36h379c7bd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/coverage-4.4.2-py36h8d5022f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cryptography-2.1.4-py36h842514c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/cubeviz-0.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/cython-0.27.3-py36h6ecb376_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dask-0.16.0-py36h40f4302_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dask-core-0.16.0-py36haa8de34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dbus-1.10.22-h50d9ad6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/decorator-4.1.2-py36h69a1b52_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/dill-0.2.7.1-py36hdf89ffe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/distributed-1.20.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/docopt-0.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/entrypoints-0.2.3-py36hd81d71f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/expat-2.2.5-hb8e80ba_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/ginga-2.6.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/glib-2.53.6-h33f6a65_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-core-0.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-ginga-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glue-vispy-viewers-0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/glueviz-0.12.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/gwcs-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/h5py-2.7.1-py36h39cdac5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/heapdict-1.0.0-py36h27a9ac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/html5lib-1.0.1-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/hypothesis-3.38.5-py36hcba0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/imageio-2.2.0-py36h5e01289_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/imexam-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipykernel-4.7.0-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipython-6.2.1-py36h3dda519_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jedi-0.11.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jupyter_client-5.1.0-py36hf6c435f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/jupyter_core-4.4.0-py36h79cf704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libpng-1.6.32-hd1e8b91_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libsodium-1.0.15-hd9e47c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/matplotlib-2.1.1-py36h2fb3e9e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/mistune-0.8.1-py36h638d0ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/mosviz-0.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/msgpack-python-0.4.8-py36h46767b2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/nbconvert-5.3.1-py36h810822e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/nbformat-4.4.0-py36h827af21_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/networkx-2.0-py36hefccab9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/notebook-5.2.2-py36h124cd7f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/numpy-1.13.3-py36h2cdce51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/olefile-0.44-py36ha08bf50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandas-0.21.1-py36h2c08c6b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandoc-1.19.2.1-ha5e8f32_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pandocfilters-1.4.2-py36h3b0b094_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/parso-0.1.1-py36hc90e01c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pcre-8.41-hfb6ab37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pexpect-4.3.0-py36h427ab81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/photutils-0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pillow-4.3.0-py36h96fe3d5_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pip-9.0.1-py36h1555ced_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/plotly-2.2.2-py36h097dc49_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/psutil-5.4.1-py36h907aff9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/ptyprocess-0.5.2-py36he6521c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/py-1.5.2-py36ha69170d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/py-expression-eval-0.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pympler-0.5-py36hc2752d1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/pyopengl-3.1.1a1-np113py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyopenssl-17.5.0-py36h51e4350_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyqt-5.6.0-py36he5c6137_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/pyqtgraph-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pysocks-1.6.7-py36hfa33cec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pytest-3.3.0-py36h707cbdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python-3.6.4-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python-dateutil-2.6.1-py36h86d2abb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/python.app-2-py36h54569d5_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pytz-2017.3-py36hf0bf824_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/pyzmq-16.0.3-py36he48b5ad_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qt-5.6.2-h9975529_14.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qtconsole-4.3.1-py36hd96c0ff_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/qtpy-1.3.1-py36h16bb863_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scikit-image-0.13.0-py36h398857d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scikit-learn-0.19.1-py36hffbff8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/scipy-1.0.0-py36h1de22e9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/setuptools-36.5.0-py36h2134326_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/simplegeneric-0.8.1-py36he5b5b09_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sip-4.18.1-py36h2824476_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sortedcontainers-1.5.7-py36ha982688_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/specutils-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/specviz-0.4.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/spherical-geometry-1.0.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/sqlite-3.20.1-h7e4c145_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/stginga-0.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/astroconda/osx-64/stsci-data-analysis-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/terminado-0.6-py36h656782e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/testpath-0.3.1-py36h625a49b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/toolz-0.8.2-py36h7b95164_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/tornado-4.5.2-py36h468dda9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/webencodings-0.5.1-py36h3b9701d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/wheel-0.30.0-py36h5eb2c71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/xlrd-1.1.0-py36h336f4a2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zeromq-4.2.2-ha360ad0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/free/osx-64/zope-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/4/main/osx-64/zope.interface-4.4.3-py36h74e83c9_0.tar.bz2
\ No newline at end of file diff --git a/da/5/README.md b/da/5/README.md new file mode 100644 index 0000000..aa21789 --- /dev/null +++ b/da/5/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each DA release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n da-5 --file http://ssb.stsci.edu/releases/da/5/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n da-5 --file http://ssb.stsci.edu/releases/da/5/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.3.1-Linux-x86_64.sh +$ bash Anaconda3-5.3.1-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh +$ bash Miniconda3-4.5.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n da-5 --file http://ssb.stsci.edu/releases/da/5/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate da-5 +``` diff --git a/da/5/da-5-cubeviz-linux-py36.final.txt b/da/5/da-5-cubeviz-linux-py36.final.txt new file mode 100644 index 0000000..a6aac0c --- /dev/null +++ b/da/5/da-5-cubeviz-linux-py36.final.txt @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zeromq-4.2.5-hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/python-3.6.7-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dask-core-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dill-0.2.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/docopt-0.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/markupsafe-1.1.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/numpy-base-1.15.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/psutil-5.4.8-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/py-expression-eval-0.3.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/pyopengl-3.1.1a1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyzmq-17.1.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtpy-1.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sortedcontainers-2.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/xlrd-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl_fft-1.0.6-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/retrying-1.3.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/setuptools-40.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cryptography-2.4.2-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cython-0.29.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/distributed-1.25.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jupyter_core-4.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/numpy-1.15.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-4.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/asdf-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/asteval-0.9.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bokeh-1.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bottleneck-1.2.1-py36h035aef0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/fast-histogram-0.5-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jupyter_client-5.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/nbformat-4.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/pyqtgraph-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-openfiles-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scipy-1.1.0-py36h7c811a0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dask-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mpl-scatter-density-0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/astropy-3.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipykernel-5.1.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/plotly-3.4.2-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtconsole-4.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/radio-beam-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/specutils-0.2.2-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glue-core-0.14.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/spectral-cube-0.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/specviz-0.5.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/cubeviz-0.2.1-py36_0.tar.bz2
\ No newline at end of file diff --git a/da/5/da-5-cubeviz-linux-py37.final.txt b/da/5/da-5-cubeviz-linux-py37.final.txt new file mode 100644 index 0000000..a4049a0 --- /dev/null +++ b/da/5/da-5-cubeviz-linux-py37.final.txt @@ -0,0 +1,151 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zeromq-4.2.5-hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/python-3.7.1-h0371630_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/click-7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cloudpickle-0.6.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dask-core-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dill-0.2.8.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/docopt-0.6.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/kiwisolver-1.0.1-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/markupsafe-1.1.0-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/msgpack-python-0.5.6-py37h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/numpy-base-1.15.4-py37hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/olefile-0.46-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pluggy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/psutil-5.4.8-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/py-expression-eval-0.3.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pycparser-2.19-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyparsing-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytz-2018.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyyaml-3.13-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyzmq-17.1.2-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtpy-1.5.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tornado-5.1.1-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/xlrd-1.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cffi-1.11.5-py37he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cytoolz-0.9.0.1-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl_fft-1.0.6-py37hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl_random-1.0.2-py37hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/packaging-18.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/partd-0.3.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pillow-5.3.0-py37h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/retrying-1.3.3-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/setuptools-40.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cryptography-2.4.2-py37h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cython-0.29.2-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/distributed-1.25.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jupyter_core-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/numpy-1.15.4-py37h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-4.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/asdf-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/asteval-0.9.13-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bokeh-1.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bottleneck-1.2.1-py37h035aef0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/fast-histogram-0.5-py37hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/h5py-2.8.0-py37h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/imageio-2.4.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jupyter_client-5.2.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/matplotlib-3.0.2-py37h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/nbformat-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandas-0.23.4-py37h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pip-18.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/prompt_toolkit-2.0.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyqtgraph-0.10.0-py37h28b3542_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-openfiles-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pywavelets-1.0.1-py37hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scipy-1.1.0-py37h7c811a0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dask-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mpl-scatter-density-0.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scikit-image-0.14.1-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/astropy-3.1-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipykernel-5.1.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/plotly-3.4.2-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtconsole-4.4.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/radio-beam-0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/specutils-0.2.2-py37_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glue-core-0.14.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/spectral-cube-0.4.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/specviz-0.5.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/cubeviz-0.2.1-py37_0.tar.bz2
\ No newline at end of file diff --git a/da/5/da-5-cubeviz-osx-py36.final.txt b/da/5/da-5-cubeviz-osx-py36.final.txt new file mode 100644 index 0000000..937504d --- /dev/null +++ b/da/5/da-5-cubeviz-osx-py36.final.txt @@ -0,0 +1,150 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libsodium-1.0.16-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pcre-8.42-h378b8a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zeromq-4.2.5-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dbus-1.13.2-h760590f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python-3.6.7-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dask-core-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dill-0.2.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/docopt-0.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/markupsafe-1.1.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/numpy-base-1.15.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/psutil-5.4.8-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/py-expression-eval-0.3.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/pyopengl-3.1.1a1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python.app-2-py36_9.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyzmq-17.1.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtpy-1.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sortedcontainers-2.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/xlrd-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl_fft-1.0.6-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/retrying-1.3.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/setuptools-40.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cryptography-2.4.2-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cython-0.29.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/distributed-1.25.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jupyter_core-4.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/numpy-1.15.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-4.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/asdf-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/asteval-0.9.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bokeh-1.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bottleneck-1.2.1-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/fast-histogram-0.5-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jupyter_client-5.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/nbformat-4.4.0-py36h827af21_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/pyqtgraph-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-openfiles-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scipy-1.1.0-py36h1410ff5_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dask-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mpl-scatter-density-0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scikit-image-0.14.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/astropy-3.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipykernel-5.1.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/plotly-3.4.2-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtconsole-4.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/radio-beam-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/specutils-0.2.2-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/glue-core-0.14.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/spectral-cube-0.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/specviz-0.5.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/cubeviz-0.2.1-py36_0.tar.bz2
\ No newline at end of file diff --git a/da/5/da-5-cubeviz-osx-py37.final.txt b/da/5/da-5-cubeviz-osx-py37.final.txt new file mode 100644 index 0000000..58e1a7d --- /dev/null +++ b/da/5/da-5-cubeviz-osx-py37.final.txt @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libsodium-1.0.16-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pcre-8.42-h378b8a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zeromq-4.2.5-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dbus-1.13.2-h760590f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python-3.7.1-haf84260_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/click-7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cloudpickle-0.6.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dask-core-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dill-0.2.8.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/docopt-0.6.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/kiwisolver-1.0.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/markupsafe-1.1.0-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/msgpack-python-0.5.6-py37h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/numpy-base-1.15.4-py37h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/olefile-0.46-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pluggy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/psutil-5.4.8-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/py-expression-eval-0.3.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pycparser-2.19-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyparsing-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python.app-2-py37_9.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytz-2018.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyyaml-3.13-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyzmq-17.1.2-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtpy-1.5.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sip-4.19.8-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tornado-5.1.1-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/xlrd-1.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cffi-1.11.5-py37h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cytoolz-0.9.0.1-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl_fft-1.0.6-py37h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl_random-1.0.2-py37h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/packaging-18.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/partd-0.3.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pillow-5.3.0-py37hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyqt-5.9.2-py37h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/retrying-1.3.3-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/setuptools-40.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cryptography-2.4.2-py37ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cython-0.29.2-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/distributed-1.25.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jupyter_core-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/numpy-1.15.4-py37hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-4.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/asdf-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/asteval-0.9.13-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bokeh-1.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bottleneck-1.2.1-py37h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/fast-histogram-0.5-py37h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/h5py-2.8.0-py37h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/imageio-2.4.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jupyter_client-5.2.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/matplotlib-3.0.2-py37h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/nbformat-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandas-0.23.4-py37h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pip-18.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/prompt_toolkit-2.0.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyqtgraph-0.10.0-py37h28b3542_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-openfiles-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pywavelets-1.0.1-py37h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scipy-1.1.0-py37h1410ff5_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dask-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mpl-scatter-density-0.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scikit-image-0.14.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/astropy-3.1-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipykernel-5.1.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/plotly-3.4.2-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtconsole-4.4.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/radio-beam-0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/specutils-0.2.2-py37_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/glue-core-0.14.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/spectral-cube-0.4.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/specviz-0.5.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/cubeviz-0.2.1-py37_0.tar.bz2
\ No newline at end of file diff --git a/da/5/da-5-linux-py36.final.txt b/da/5/da-5-linux-py36.final.txt new file mode 100644 index 0000000..ef94f33 --- /dev/null +++ b/da/5/da-5-linux-py36.final.txt @@ -0,0 +1,184 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/da5-notebooks-1.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/webbpsf-data-0.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gmp-6.1.2-h6c8ec71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandoc-2.2.3.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zeromq-4.2.5-hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/python-3.6.7-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dask-core-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dill-0.2.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/entrypoints-0.2.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/et_xmlfile-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jdcal-1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/markupsafe-1.1.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mistune-0.8.4-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/numpy-base-1.14.6-py36h81de0dd_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandocfilters-1.4.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/prometheus_client-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/psutil-5.4.8-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/pyopengl-3.1.1a1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyzmq-17.1.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtpy-1.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/send2trash-1.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sortedcontainers-2.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/testpath-0.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/xlrd-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/openpyxl-2.5.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtawesome-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/retrying-1.3.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/setuptools-40.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/terminado-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bleach-3.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cryptography-2.4.2-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cython-0.29.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/distributed-1.25.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jupyter_core-4.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-4.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jupyter_client-5.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/nbformat-4.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-openfiles-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/nbconvert-5.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipykernel-5.1.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/notebook-5.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/plotly-3.4.2-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtconsole-4.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/widgetsnbextension-3.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipywidgets-7.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/asdf-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/asteval-0.9.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bokeh-1.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/jwxml-0.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/numpy-1.14.6-py36h3b04361_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/pyqtgraph-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scipy-1.1.0-py36hd20e5f9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stsci.imagestats-1.5.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dask-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scikit-learn-0.20.1-py36h4989274_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/astropy-3.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/astroimtools-0.1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/ginga-2.7.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glue-core-0.14.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/gwcs-0.9.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/poppy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/pysiaf-0.1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/spherical-geometry-1.2.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/imexam-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/specutils-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stginga-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/tweakwcs-0.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/webbpsf-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/specviz-0.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/mosviz-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stsci-data-analysis-3.0.0-py36_0.tar.bz2
\ No newline at end of file diff --git a/da/5/da-5-linux-py37.final.txt b/da/5/da-5-linux-py37.final.txt new file mode 100644 index 0000000..e428b35 --- /dev/null +++ b/da/5/da-5-linux-py37.final.txt @@ -0,0 +1,186 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/da5-notebooks-1.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/webbpsf-data-0.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gmp-6.1.2-h6c8ec71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandoc-2.2.3.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zeromq-4.2.5-hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/python-3.7.1-h0371630_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/click-7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cloudpickle-0.6.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dask-core-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dill-0.2.8.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/entrypoints-0.2.3-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jdcal-1.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/kiwisolver-1.0.1-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/lxml-4.2.5-py37hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/markupsafe-1.1.0-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mistune-0.8.4-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/msgpack-python-0.5.6-py37h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/numpy-base-1.14.6-py37h81de0dd_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/olefile-0.46-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pluggy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/prometheus_client-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/psutil-5.4.8-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pycparser-2.19-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyparsing-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytz-2018.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyyaml-3.13-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyzmq-17.1.2-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtpy-1.5.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/send2trash-1.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/testpath-0.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tornado-5.1.1-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/webencodings-0.5.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/xlrd-1.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cffi-1.11.5-py37he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cytoolz-0.9.0.1-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/openpyxl-2.5.12-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/packaging-18.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/partd-0.3.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pillow-5.3.0-py37h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtawesome-0.5.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/retrying-1.3.3-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/setuptools-40.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/terminado-0.8.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bleach-3.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cryptography-2.4.2-py37h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cython-0.29.2-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/distributed-1.25.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jupyter_core-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-4.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jupyter_client-5.2.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/nbformat-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pip-18.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/prompt_toolkit-2.0.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-openfiles-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/nbconvert-5.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipykernel-5.1.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/notebook-5.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/plotly-3.4.2-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtconsole-4.4.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/widgetsnbextension-3.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipywidgets-7.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/asdf-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/asteval-0.9.13-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bokeh-1.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bottleneck-1.2.1-py37h035aef0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/fast-histogram-0.5-py37hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/h5py-2.8.0-py37h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/imageio-2.4.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/matplotlib-3.0.2-py37h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/jwxml-0.3.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl_fft-1.0.6-py37h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl_random-1.0.1-py37h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/numpy-1.14.6-py37h3b04361_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mpl-scatter-density-0.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandas-0.23.4-py37h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyqtgraph-0.10.0-py37h28b3542_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pywavelets-1.0.1-py37hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scipy-1.1.0-py37hc49cb51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stsci.imagestats-1.5.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stsci.stimage-0.2.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dask-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scikit-image-0.14.1-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scikit-learn-0.20.1-py37h4989274_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/astropy-3.1-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/astroimtools-0.1.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/ginga-2.7.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glue-core-0.14.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/gwcs-0.9.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/photutils-0.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/poppy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/pysiaf-0.1.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/spherical-geometry-1.2.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/imexam-0.8.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/specutils-0.5.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stginga-1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/tweakwcs-0.1.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/webbpsf-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/specviz-0.6.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/mosviz-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stsci-data-analysis-3.0.0-py37_0.tar.bz2
\ No newline at end of file diff --git a/da/5/da-5-osx-py36.final.txt b/da/5/da-5-osx-py36.final.txt new file mode 100644 index 0000000..d8ccf0b --- /dev/null +++ b/da/5/da-5-osx-py36.final.txt @@ -0,0 +1,182 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/da5-notebooks-1.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libsodium-1.0.16-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandoc-2.2.3.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/webbpsf-data-0.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pcre-8.42-h378b8a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zeromq-4.2.5-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dbus-1.13.2-h760590f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python-3.6.7-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dask-core-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dill-0.2.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/entrypoints-0.2.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/et_xmlfile-1.0.1-py36h1315bdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jdcal-1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/markupsafe-1.1.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mistune-0.8.4-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/numpy-base-1.14.6-py36h8a80b8c_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandocfilters-1.4.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/prometheus_client-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/psutil-5.4.8-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/pyopengl-3.1.1a1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python.app-2-py36_9.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyzmq-17.1.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtpy-1.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/send2trash-1.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sortedcontainers-2.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/testpath-0.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/xlrd-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/openpyxl-2.5.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtawesome-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/retrying-1.3.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/setuptools-40.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/terminado-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bleach-3.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cryptography-2.4.2-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cython-0.29.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/distributed-1.25.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jupyter_core-4.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-4.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jupyter_client-5.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/nbformat-4.4.0-py36h827af21_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-openfiles-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/nbconvert-5.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipykernel-5.1.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/notebook-5.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/plotly-3.4.2-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtconsole-4.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/widgetsnbextension-3.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipywidgets-7.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/asdf-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/asteval-0.9.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bokeh-1.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/jwxml-0.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/numpy-1.14.6-py36h648b28d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/pyqtgraph-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scipy-1.1.0-py36hf1f7d93_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stsci.imagestats-1.5.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dask-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scikit-image-0.14.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scikit-learn-0.20.1-py36h4f467ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/astropy-3.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/astroimtools-0.1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/ginga-2.7.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glue-core-0.14.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/gwcs-0.9.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/poppy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/pysiaf-0.1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/spherical-geometry-1.2.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/imexam-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/specutils-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stginga-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/tweakwcs-0.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/webbpsf-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/specviz-0.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/mosviz-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stsci-data-analysis-3.0.0-py36_0.tar.bz2
\ No newline at end of file diff --git a/da/5/da-5-osx-py37.final.txt b/da/5/da-5-osx-py37.final.txt new file mode 100644 index 0000000..a8623d6 --- /dev/null +++ b/da/5/da-5-osx-py37.final.txt @@ -0,0 +1,184 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/da5-notebooks-1.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libsodium-1.0.16-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandoc-2.2.3.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/webbpsf-data-0.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pcre-8.42-h378b8a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zeromq-4.2.5-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dbus-1.13.2-h760590f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python-3.7.1-haf84260_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/click-7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cloudpickle-0.6.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dask-core-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dill-0.2.8.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/entrypoints-0.2.3-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jdcal-1.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/kiwisolver-1.0.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/lxml-4.2.5-py37hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/markupsafe-1.1.0-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mistune-0.8.4-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/msgpack-python-0.5.6-py37h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/numpy-base-1.14.6-py37h8a80b8c_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/olefile-0.46-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pluggy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/prometheus_client-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/psutil-5.4.8-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pycparser-2.19-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyparsing-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python.app-2-py37_9.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytz-2018.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyyaml-3.13-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyzmq-17.1.2-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtpy-1.5.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/send2trash-1.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sip-4.19.8-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/testpath-0.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tornado-5.1.1-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/webencodings-0.5.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/xlrd-1.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cffi-1.11.5-py37h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cytoolz-0.9.0.1-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/openpyxl-2.5.12-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/packaging-18.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/partd-0.3.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pillow-5.3.0-py37hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyqt-5.9.2-py37h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtawesome-0.5.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/retrying-1.3.3-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/setuptools-40.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/terminado-0.8.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bleach-3.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cryptography-2.4.2-py37ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cython-0.29.2-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/distributed-1.25.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jupyter_core-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-4.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jupyter_client-5.2.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/nbformat-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pip-18.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/prompt_toolkit-2.0.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-openfiles-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/nbconvert-5.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipykernel-5.1.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/notebook-5.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/plotly-3.4.2-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtconsole-4.4.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/widgetsnbextension-3.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipywidgets-7.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/asdf-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/asteval-0.9.13-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bokeh-1.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bottleneck-1.2.1-py37h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/fast-histogram-0.5-py37h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/h5py-2.8.0-py37h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/imageio-2.4.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/matplotlib-3.0.2-py37h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/jwxml-0.3.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl_fft-1.0.6-py37hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl_random-1.0.1-py37h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/numpy-1.14.6-py37h648b28d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mpl-scatter-density-0.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandas-0.23.4-py37h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyqtgraph-0.10.0-py37h28b3542_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pywavelets-1.0.1-py37h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scipy-1.1.0-py37hf5b7bf4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stsci.imagestats-1.5.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stsci.stimage-0.2.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dask-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scikit-image-0.14.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scikit-learn-0.20.1-py37h4f467ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/astropy-3.1-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/astroimtools-0.1.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/ginga-2.7.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/glue-core-0.14.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/gwcs-0.9.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/photutils-0.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/poppy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/pysiaf-0.1.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/spherical-geometry-1.2.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/imexam-0.8.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/specutils-0.5.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stginga-1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/tweakwcs-0.1.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/webbpsf-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/specviz-0.6.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/mosviz-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stsci-data-analysis-3.0.0-py37_0.tar.bz2
\ No newline at end of file diff --git a/da/5/latest-linux b/da/5/latest-linux new file mode 100644 index 0000000..e428b35 --- /dev/null +++ b/da/5/latest-linux @@ -0,0 +1,186 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/da5-notebooks-1.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/webbpsf-data-0.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gmp-6.1.2-h6c8ec71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandoc-2.2.3.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zeromq-4.2.5-hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/python-3.7.1-h0371630_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/click-7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cloudpickle-0.6.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dask-core-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dill-0.2.8.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/entrypoints-0.2.3-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jdcal-1.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/kiwisolver-1.0.1-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/lxml-4.2.5-py37hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/markupsafe-1.1.0-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mistune-0.8.4-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/msgpack-python-0.5.6-py37h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/numpy-base-1.14.6-py37h81de0dd_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/olefile-0.46-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pluggy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/prometheus_client-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/psutil-5.4.8-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pycparser-2.19-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyparsing-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytz-2018.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyyaml-3.13-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyzmq-17.1.2-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtpy-1.5.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/send2trash-1.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/testpath-0.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/tornado-5.1.1-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/webencodings-0.5.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/xlrd-1.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cffi-1.11.5-py37he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cytoolz-0.9.0.1-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/openpyxl-2.5.12-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/packaging-18.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/partd-0.3.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pillow-5.3.0-py37h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtawesome-0.5.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/retrying-1.3.3-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/setuptools-40.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/terminado-0.8.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bleach-3.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cryptography-2.4.2-py37h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/cython-0.29.2-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/distributed-1.25.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jupyter_core-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-4.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/jupyter_client-5.2.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/nbformat-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pip-18.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/prompt_toolkit-2.0.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-openfiles-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/nbconvert-5.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipykernel-5.1.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/notebook-5.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/plotly-3.4.2-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/qtconsole-4.4.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/widgetsnbextension-3.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/ipywidgets-7.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/asdf-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/asteval-0.9.13-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bokeh-1.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/bottleneck-1.2.1-py37h035aef0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/fast-histogram-0.5-py37hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/h5py-2.8.0-py37h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/imageio-2.4.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/matplotlib-3.0.2-py37h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/jwxml-0.3.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl_fft-1.0.6-py37h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mkl_random-1.0.1-py37h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/numpy-1.14.6-py37h3b04361_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/mpl-scatter-density-0.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pandas-0.23.4-py37h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pyqtgraph-0.10.0-py37h28b3542_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pywavelets-1.0.1-py37hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scipy-1.1.0-py37hc49cb51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stsci.imagestats-1.5.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stsci.stimage-0.2.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/dask-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scikit-image-0.14.1-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/scikit-learn-0.20.1-py37h4989274_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/astropy-3.1-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/astroimtools-0.1.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/ginga-2.7.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/linux-64/glue-core-0.14.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/gwcs-0.9.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/photutils-0.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/poppy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/pysiaf-0.1.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/spherical-geometry-1.2.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/imexam-0.8.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/specutils-0.5.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stginga-1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/tweakwcs-0.1.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/webbpsf-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/specviz-0.6.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/mosviz-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/linux-64/stsci-data-analysis-3.0.0-py37_0.tar.bz2
\ No newline at end of file diff --git a/da/5/latest-osx b/da/5/latest-osx new file mode 100644 index 0000000..a8623d6 --- /dev/null +++ b/da/5/latest-osx @@ -0,0 +1,184 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/da5-notebooks-1.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libsodium-1.0.16-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandoc-2.2.3.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/webbpsf-data-0.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pcre-8.42-h378b8a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zeromq-4.2.5-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dbus-1.13.2-h760590f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python-3.7.1-haf84260_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/click-7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cloudpickle-0.6.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dask-core-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dill-0.2.8.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/entrypoints-0.2.3-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jdcal-1.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/kiwisolver-1.0.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/lxml-4.2.5-py37hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/markupsafe-1.1.0-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mistune-0.8.4-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/msgpack-python-0.5.6-py37h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/numpy-base-1.14.6-py37h8a80b8c_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/olefile-0.46-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pluggy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/prometheus_client-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/psutil-5.4.8-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pycparser-2.19-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyparsing-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python.app-2-py37_9.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytz-2018.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyyaml-3.13-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyzmq-17.1.2-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtpy-1.5.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/send2trash-1.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sip-4.19.8-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/testpath-0.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/tornado-5.1.1-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/webencodings-0.5.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/xlrd-1.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cffi-1.11.5-py37h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cytoolz-0.9.0.1-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/openpyxl-2.5.12-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/packaging-18.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/partd-0.3.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pillow-5.3.0-py37hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyqt-5.9.2-py37h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtawesome-0.5.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/retrying-1.3.3-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/setuptools-40.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/terminado-0.8.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bleach-3.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cryptography-2.4.2-py37ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/cython-0.29.2-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/distributed-1.25.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jupyter_core-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-4.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/jupyter_client-5.2.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/nbformat-4.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pip-18.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/prompt_toolkit-2.0.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-openfiles-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/nbconvert-5.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipykernel-5.1.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/notebook-5.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/plotly-3.4.2-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/qtconsole-4.4.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/widgetsnbextension-3.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/ipywidgets-7.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/asdf-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/asteval-0.9.13-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bokeh-1.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/bottleneck-1.2.1-py37h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/fast-histogram-0.5-py37h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/h5py-2.8.0-py37h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/imageio-2.4.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/matplotlib-3.0.2-py37h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/jwxml-0.3.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl_fft-1.0.6-py37hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mkl_random-1.0.1-py37h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/numpy-1.14.6-py37h648b28d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/mpl-scatter-density-0.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pandas-0.23.4-py37h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pyqtgraph-0.10.0-py37h28b3542_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pywavelets-1.0.1-py37h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scipy-1.1.0-py37hf5b7bf4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stsci.imagestats-1.5.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stsci.stimage-0.2.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/dask-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scikit-image-0.14.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/scikit-learn-0.20.1-py37h4f467ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/astropy-3.1-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/astroimtools-0.1.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/ginga-2.7.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/main/osx-64/glue-core-0.14.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/gwcs-0.9.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/photutils-0.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/poppy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/pysiaf-0.1.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/spherical-geometry-1.2.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/imexam-0.8.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/specutils-0.5.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stginga-1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/tweakwcs-0.1.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/webbpsf-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/specviz-0.6.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/mosviz-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/da/5/astroconda/osx-64/stsci-data-analysis-3.0.0-py37_0.tar.bz2
\ No newline at end of file diff --git a/de/a/README.md b/de/a/README.md new file mode 100644 index 0000000..b2c8b26 --- /dev/null +++ b/de/a/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each DE release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n de-a --file http://ssb.stsci.edu/releases/de/a/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n de-a --file http://ssb.stsci.edu/releases/de/a/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.07-Linux-x86_64.sh +$ bash Anaconda3-2019.07-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.10-Linux-x86_64.sh +$ bash Miniconda3-4.7.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the environment + +``` +$ conda create -n de-a --file http://ssb.stsci.edu/releases/de/a/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the environment + +``` +$ source activate de-a +``` diff --git a/de/a/de-a-linux-py36.final.txt b/de/a/de-a-linux-py36.final.txt new file mode 100644 index 0000000..21a3519 --- /dev/null +++ b/de/a/de-a-linux-py36.final.txt @@ -0,0 +1,180 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/blas-1.0-mkl.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ca-certificates-2019.8.28-0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/webbpsf-data-0.8.0-0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl-2019.4-243.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gmp-6.1.2-h6c8ec71_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/openssl-1.1.1d-h7b6447c_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libxml2-2.9.9-hea5a465_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandoc-2.2.3.2-0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/zeromq-4.3.1-he6710b0_3.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.29.0-h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/python-3.6.9-h265db76_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/certifi-2019.9.11-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/click-7.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/cloudpickle-1.2.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/dask-core-2.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/dill-0.3.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/et_xmlfile-1.0.1-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/fsspec-0.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/lxml-4.4.1-py36hefd8a0e_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mistune-0.8.4-py36h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/more-itertools-7.2.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/msgpack-python-0.6.1-py36hfd86e86_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandocfilters-1.4.2-py36_1.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/parso-0.5.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/psutil-5.6.3-py36h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/pyopengl-3.1.3b1-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pyparsing-2.4.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pytz-2019.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pyyaml-5.1.2-py36h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pyzmq-18.1.0-py36he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/send2trash-1.5.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sortedcontainers-2.1.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/tblib-1.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/testpath-0.4.2-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/tornado-6.0.3-py36h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/xlrd-1.2.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/cytoolz-0.10.0-py36h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jedi-0.15.1-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl-service-2.3.0-py36he904b0f_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/openpyxl-2.6.3-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/packaging-19.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/partd-1.0.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pillow-6.1.0-py36h34e0f95_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pyrsistent-0.15.4-py36h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/qtawesome-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/retrying-1.3.3-py36_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/setuptools-41.2.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/terminado-0.8.2-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/zict-1.0.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/zipp-0.6.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/bleach-3.1.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/cython-0.29.13-py36he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/distributed-2.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/importlib_metadata-0.23-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jsonschema-3.0.2-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/jupyter_core-4.5.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/networkx-2.3-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/plotly-4.1.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/setuptools_scm-3.3.3-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/wheel-0.33.6-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jupyter_client-5.3.3-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/nbformat-4.4.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pip-19.2.3-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pluggy-0.13.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ipython-7.8.0-py36h39e3cac_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/nbconvert-5.6.0-py36_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pytest-5.0.1-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ipykernel-5.1.2-py36h39e3cac_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pytest-remotedata-0.3.2-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/notebook-6.0.1-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/qtconsole-4.5.5-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/widgetsnbextension-3.5.1-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/asdf-2.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/asteval-0.9.13-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/bokeh-1.3.4-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/matplotlib-3.1.1-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/jwxml-0.3.0-py36_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl_fft-1.0.14-py36ha843d7b_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl_random-1.1.0-py36hd6b4f25_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/numpy-1.16.5-py36h7e9f1db_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/numpy-base-1.16.5-py36hde5b4d6_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pandas-0.25.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/pyqtgraph-0.10.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pytest-doctestplus-0.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/scipy-1.3.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/dask-2.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/scikit-learn-0.21.3-py36hd81dba3_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/ginga-3.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/gwcs-0.11.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/poppy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/pysiaf-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/spherical-geometry-1.2.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/photutils-0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/specutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stginga-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/webbpsf-0.8.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/astroimtools-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/imexam-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stsci-data-analysis-3.0.0-py36_0.tar.bz2 diff --git a/de/a/de-a-linux-py37.final.txt b/de/a/de-a-linux-py37.final.txt new file mode 100644 index 0000000..b810921 --- /dev/null +++ b/de/a/de-a-linux-py37.final.txt @@ -0,0 +1,182 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/blas-1.0-mkl.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ca-certificates-2019.8.28-0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/webbpsf-data-0.8.0-0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl-2019.4-243.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gmp-6.1.2-h6c8ec71_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/openssl-1.1.1d-h7b6447c_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libxml2-2.9.9-hea5a465_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandoc-2.2.3.2-0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/zeromq-4.3.1-he6710b0_3.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.29.0-h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/python-3.7.4-h265db76_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/atomicwrites-1.3.0-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/attrs-19.1.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/certifi-2019.9.11-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/click-7.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/cloudpickle-1.2.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/dask-core-2.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/decorator-4.4.0-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/dill-0.3.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/entrypoints-0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/fsspec-0.5.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/heapdict-1.0.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/joblib-0.13.2-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/kiwisolver-1.1.0-py37he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/locket-0.2.0-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/lxml-4.4.1-py37hefd8a0e_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/markupsafe-1.1.1-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mistune-0.8.4-py37h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/more-itertools-7.2.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/msgpack-python-0.6.1-py37hfd86e86_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/olefile-0.46-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/parso-0.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/psutil-5.6.3-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/py-1.8.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pyparsing-2.4.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pytz-2019.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pyyaml-5.1.2-py37h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pyzmq-18.1.0-py37he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/send2trash-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/six-1.12.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/tblib-1.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/testpath-0.4.2-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/tornado-6.0.3-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/webencodings-0.5.1-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/xlrd-1.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/cytoolz-0.10.0-py37h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jedi-0.15.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl-service-2.3.0-py37he904b0f_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/openpyxl-2.6.3-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/packaging-19.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/partd-1.0.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pexpect-4.7.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pillow-6.1.0-py37h34e0f95_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pyrsistent-0.15.4-py37h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/python-dateutil-2.8.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/qtawesome-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/retrying-1.3.3-py37_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/setuptools-41.2.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/terminado-0.8.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/zict-1.0.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/zipp-0.6.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/bleach-3.1.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/cython-0.29.13-py37he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/distributed-2.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/importlib_metadata-0.23-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jinja2-2.10.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jsonschema-3.0.2-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/jupyter_core-4.5.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/networkx-2.3-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/numpy-base-1.17.2-py37hde5b4d6_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/plotly-4.1.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/setuptools_scm-3.3.3-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/wheel-0.33.6-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jupyter_client-5.3.3-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/nbformat-4.4.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pip-19.2.3-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pluggy-0.13.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/prompt_toolkit-2.0.9-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ipython-7.8.0-py37h39e3cac_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/nbconvert-5.6.0-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pytest-5.0.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ipykernel-5.1.2-py37h39e3cac_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pytest-remotedata-0.3.2-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/notebook-6.0.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/qtconsole-4.5.5-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/widgetsnbextension-3.5.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/asdf-2.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/asteval-0.9.13-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/bokeh-1.3.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/bottleneck-1.2.1-py37h035aef0_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/fast-histogram-0.7-py37hdd07704_1000.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/h5py-2.9.0-py37h7918eee_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/imageio-2.5.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/matplotlib-3.1.1-py37h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/jwxml-0.3.0-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl_fft-1.0.14-py37ha843d7b_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl_random-1.1.0-py37hd6b4f25_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/numpy-1.17.2-py37haad9e8e_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/mpl-scatter-density-0.6-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pandas-0.25.1-py37he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyqtgraph-0.10.0-py37h28b3542_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pytest-doctestplus-0.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pywavelets-1.0.3-py37hdd07704_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/scipy-1.3.1-py37h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stsci.imagestats-1.6.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stsci.stimage-0.2.4-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/dask-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/scikit-image-0.15.0-py37he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/scikit-learn-0.21.3-py37hd81dba3_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/astropy-3.2.1-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/ginga-3.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/gwcs-0.11.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/poppy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/pysiaf-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/spherical-geometry-1.2.17-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/photutils-0.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/specutils-0.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stginga-1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/tweakwcs-0.5.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/webbpsf-0.8.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/astroimtools-0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/imexam-0.8.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stsci-data-analysis-3.0.0-py37_0.tar.bz2 diff --git a/de/a/de-a-osx-py36.final.txt b/de/a/de-a-osx-py36.final.txt new file mode 100644 index 0000000..48dbe70 --- /dev/null +++ b/de/a/de-a-osx-py36.final.txt @@ -0,0 +1,177 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/blas-1.0-mkl.conda +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2019.8.28-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/intel-openmp-2019.4-233.conda +https://repo.anaconda.com/pkgs/main/osx-64/jpeg-9b-he5867d9_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libgfortran-3.0.1-h93005f0_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/libiconv-1.15-hdd342a3_7.conda +https://repo.anaconda.com/pkgs/main/osx-64/libsodium-1.0.16-h3efe00b_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/pandoc-2.2.3.2-0.conda +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-data-0.8.0-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/yaml-0.1.7-hc338f04_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libpng-1.6.37-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libxml2-2.9.9-hf6e021a_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/mkl-2019.4-233.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1d-h1de35cc_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zstd-1.3.7-h5bba6e5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/freetype-2.9.1-hb4e5f40_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/icu-58.2-h4b95b61_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/libtiff-4.0.10-hcb84e12_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.1-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/pcre-8.43-h0a44026_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zeromq-4.3.1-h0a44026_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/gettext-0.19.8.1-h15daf44_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libxslt-1.1.33-h33a18ac_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-7.0-h1de35cc_5.conda +https://repo.anaconda.com/pkgs/main/osx-64/glib-2.56.2-hd9629dc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.29.0-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/dbus-1.13.6-h90a0687_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.6.9-h359304d_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/qt-5.9.7-h468cd18_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/appnope-0.1.0-py36hf537a9a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/atomicwrites-1.3.0-py36_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/attrs-19.1.0-py36_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/backcall-0.1.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.9.11-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/click-7.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/noarch/cloudpickle-1.2.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-core-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/decorator-4.4.0-py36_1.conda +https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/dill-0.3.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/entrypoints-0.3-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/et_xmlfile-1.0.1-py36h1315bdc_0.conda +https://repo.anaconda.com/pkgs/main/noarch/fsspec-0.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/heapdict-1.0.0-py36_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.conda +https://repo.anaconda.com/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/joblib-0.13.2-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/locket-0.2.0-py36hca03003_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/lxml-4.4.1-py36hef8c89e_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/mistune-0.8.4-py36h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/more-itertools-7.2.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/msgpack-python-0.6.1-py36h04f5b5a_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/olefile-0.46-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pandocfilters-1.4.2-py36_1.conda +https://repo.anaconda.com/pkgs/main/noarch/parso-0.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pickleshare-0.7.5-py36_0.conda +https://repo.anaconda.com/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/psutil-5.6.3-py36h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/ptyprocess-0.6.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/py-1.8.0-py36_0.conda +http://ssb.stsci.edu/astroconda/osx-64/pyopengl-3.1.3b1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pyparsing-2.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python.app-2-py36_9.conda +https://repo.anaconda.com/pkgs/main/noarch/pytz-2019.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyyaml-5.1.2-py36h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pyzmq-18.1.0-py36h0a44026_0.conda +https://repo.anaconda.com/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/send2trash-1.5.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sip-4.19.8-py36h0a44026_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/six-1.12.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sortedcontainers-2.1.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/noarch/tblib-1.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/testpath-0.4.2-py36_0.conda +https://repo.anaconda.com/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tornado-6.0.3-py36h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/webencodings-0.5.1-py36_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xlrd-1.2.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/noarch/zipp-0.5.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cycler-0.10.0-py36hfc81398_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/cytoolz-0.10.0-py36h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/importlib_metadata-0.23-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jedi-0.15.1-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/mkl-service-2.3.0-py36hfbe908c_0.conda +https://repo.anaconda.com/pkgs/main/noarch/openpyxl-2.6.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/packaging-19.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/partd-1.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pexpect-4.7.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pillow-6.1.0-py36hb68e598_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pyqt-5.9.2-py36h655552a_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/pyrsistent-0.14.11-py36h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-dateutil-2.8.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/noarch/qtawesome-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/retrying-1.3.3-py36_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-41.2.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/terminado-0.8.2-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.conda +https://repo.anaconda.com/pkgs/main/noarch/zict-1.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/bleach-3.1.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/cython-0.29.13-py36h0a44026_0.conda +https://repo.anaconda.com/pkgs/main/noarch/distributed-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jinja2-2.10.1-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/jsonschema-3.0.2-py36_0.conda +https://repo.anaconda.com/pkgs/main/noarch/jupyter_core-4.5.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/networkx-2.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-base-1.16.5-py36h6575580_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/plotly-4.1.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pluggy-0.13.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/setuptools_scm-3.3.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.33.6-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_client-5.3.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/nbformat-4.4.0-py36h827af21_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-19.2.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/prompt_toolkit-2.0.9-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pytest-5.1.2-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython-7.8.0-py36h39e3cac_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/nbconvert-5.6.0-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-remotedata-0.3.2-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/ipykernel-5.1.2-py36h39e3cac_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/notebook-6.0.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtconsole-4.5.5-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/widgetsnbextension-3.5.1-py36_0.conda +https://repo.anaconda.com/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/bokeh-1.3.4-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/h5py-2.9.0-py36h3134771_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/imageio-2.5.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/matplotlib-3.1.1-py36h54f8f79_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/mkl_fft-1.0.14-py36h5e564d8_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/mkl_random-1.1.0-py36ha771720_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/numpy-1.16.5-py36hacdab7b_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/asdf-2.4.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/asteval-0.9.13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/jwxml-0.3.0-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandas-0.25.1-py36h0a44026_0.conda +http://ssb.stsci.edu/astroconda/osx-64/pyqtgraph-0.10.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.conda +https://repo.anaconda.com/pkgs/main/noarch/pytest-doctestplus-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/scipy-1.3.1-py36h1410ff5_0.conda +http://ssb.stsci.edu/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-astropy-0.5.0-py36_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/ginga-3.0.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/gwcs-0.11.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/poppy-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/pysiaf-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/spherical-geometry-1.2.17-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/photutils-0.7-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/specutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stginga-1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-0.8.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/astroimtools-0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/imexam-0.8.1-py36_0.tar.bz2 diff --git a/de/a/de-a-osx-py37.final.txt b/de/a/de-a-osx-py37.final.txt new file mode 100644 index 0000000..39776dd --- /dev/null +++ b/de/a/de-a-osx-py37.final.txt @@ -0,0 +1,177 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/blas-1.0-mkl.conda +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2019.8.28-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/intel-openmp-2019.4-233.conda +https://repo.anaconda.com/pkgs/main/osx-64/jpeg-9b-he5867d9_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libgfortran-3.0.1-h93005f0_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/libiconv-1.15-hdd342a3_7.conda +https://repo.anaconda.com/pkgs/main/osx-64/libsodium-1.0.16-h3efe00b_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/pandoc-2.2.3.2-0.conda +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-data-0.8.0-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/yaml-0.1.7-hc338f04_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libpng-1.6.37-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libxml2-2.9.9-hf6e021a_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/mkl-2019.4-233.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1d-h1de35cc_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zstd-1.3.7-h5bba6e5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/freetype-2.9.1-hb4e5f40_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/icu-58.2-h4b95b61_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/libtiff-4.0.10-hcb84e12_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.1-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/pcre-8.43-h0a44026_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zeromq-4.3.1-h0a44026_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/gettext-0.19.8.1-h15daf44_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libxslt-1.1.33-h33a18ac_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-7.0-h1de35cc_5.conda +https://repo.anaconda.com/pkgs/main/osx-64/glib-2.56.2-hd9629dc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.29.0-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/dbus-1.13.6-h90a0687_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.4-h359304d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/qt-5.9.7-h468cd18_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/atomicwrites-1.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/attrs-19.1.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.9.11-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/click-7.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/cloudpickle-1.2.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-core-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/decorator-4.4.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/dill-0.3.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/entrypoints-0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/fsspec-0.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/heapdict-1.0.0-py37_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/joblib-0.13.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/kiwisolver-1.1.0-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/locket-0.2.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/lxml-4.4.1-py37hef8c89e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/markupsafe-1.1.1-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mistune-0.8.4-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/more-itertools-7.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/msgpack-python-0.6.1-py37h04f5b5a_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/olefile-0.46-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/parso-0.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/psutil-5.6.3-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/py-1.8.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/pyopengl-3.1.3b1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pyparsing-2.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python.app-2-py37_9.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytz-2019.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyyaml-5.1.2-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyzmq-18.1.0-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/send2trash-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sip-4.19.8-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/six-1.12.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/tblib-1.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/testpath-0.4.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tornado-6.0.3-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/webencodings-0.5.1-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/xlrd-1.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/zipp-0.5.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cytoolz-0.10.0-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/importlib_metadata-0.23-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jedi-0.15.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl-service-2.3.0-py37hfbe908c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/openpyxl-2.6.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/packaging-19.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/partd-1.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pexpect-4.7.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pillow-6.1.0-py37hb68e598_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyqt-5.9.2-py37h655552a_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyrsistent-0.14.11-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python-dateutil-2.8.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtawesome-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/retrying-1.3.3-py37_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-41.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/terminado-0.8.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/zict-1.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/bleach-3.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cython-0.29.13-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/distributed-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jinja2-2.10.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jsonschema-3.0.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_core-4.5.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/networkx-2.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-base-1.16.5-py37h6575580_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/plotly-4.1.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pluggy-0.13.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/setuptools_scm-3.3.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.33.6-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_client-5.3.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/nbformat-4.4.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pip-19.2.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/prompt_toolkit-2.0.9-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-5.1.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython-7.8.0-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/nbconvert-5.6.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-remotedata-0.3.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipykernel-5.1.2-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/notebook-6.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtconsole-4.5.5-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/widgetsnbextension-3.5.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/bokeh-1.3.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/h5py-2.9.0-py37h3134771_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/imageio-2.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/matplotlib-3.1.1-py37h54f8f79_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl_fft-1.0.14-py37h5e564d8_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl_random-1.1.0-py37ha771720_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-1.16.5-py37hacdab7b_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/asdf-2.4.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/asteval-0.9.13-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/jwxml-0.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandas-0.25.1-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyqtgraph-0.10.0-py37h28b3542_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-doctestplus-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pywavelets-1.0.3-py37h1d22016_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scipy-1.3.1-py37h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.imagestats-1.6.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.stimage-0.2.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scikit-image-0.15.0-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scikit-learn-0.21.2-py37h27c97d8_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/astropy-3.2.1-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/ginga-3.0.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/gwcs-0.11.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/poppy-0.8.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/pysiaf-0.5.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/spherical-geometry-1.2.17-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/photutils-0.7-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/specutils-0.6-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stginga-1.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/tweakwcs-0.5.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-0.8.0-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/astroimtools-0.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/imexam-0.8.1-py37_0.tar.bz2 diff --git a/de/a/latest-linux b/de/a/latest-linux new file mode 100644 index 0000000..b810921 --- /dev/null +++ b/de/a/latest-linux @@ -0,0 +1,182 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/blas-1.0-mkl.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ca-certificates-2019.8.28-0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/webbpsf-data-0.8.0-0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl-2019.4-243.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gmp-6.1.2-h6c8ec71_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/openssl-1.1.1d-h7b6447c_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libxml2-2.9.9-hea5a465_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandoc-2.2.3.2-0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/zeromq-4.3.1-he6710b0_3.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.29.0-h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/python-3.7.4-h265db76_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/atomicwrites-1.3.0-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/attrs-19.1.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/certifi-2019.9.11-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/click-7.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/cloudpickle-1.2.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/dask-core-2.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/decorator-4.4.0-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/dill-0.3.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/entrypoints-0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/fsspec-0.5.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/heapdict-1.0.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/joblib-0.13.2-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/kiwisolver-1.1.0-py37he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/locket-0.2.0-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/lxml-4.4.1-py37hefd8a0e_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/markupsafe-1.1.1-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mistune-0.8.4-py37h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/more-itertools-7.2.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/msgpack-python-0.6.1-py37hfd86e86_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/olefile-0.46-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/parso-0.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/psutil-5.6.3-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/py-1.8.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pyparsing-2.4.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pytz-2019.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pyyaml-5.1.2-py37h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pyzmq-18.1.0-py37he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/send2trash-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/six-1.12.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/tblib-1.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/testpath-0.4.2-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/tornado-6.0.3-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/webencodings-0.5.1-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/xlrd-1.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/cytoolz-0.10.0-py37h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jedi-0.15.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl-service-2.3.0-py37he904b0f_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/openpyxl-2.6.3-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/packaging-19.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/partd-1.0.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pexpect-4.7.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pillow-6.1.0-py37h34e0f95_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pyrsistent-0.15.4-py37h7b6447c_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/python-dateutil-2.8.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/qtawesome-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/retrying-1.3.3-py37_2.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/setuptools-41.2.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/terminado-0.8.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/zict-1.0.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/zipp-0.6.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/bleach-3.1.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/cython-0.29.13-py37he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/distributed-2.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/importlib_metadata-0.23-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jinja2-2.10.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jsonschema-3.0.2-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/jupyter_core-4.5.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/networkx-2.3-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/numpy-base-1.17.2-py37hde5b4d6_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/plotly-4.1.1-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/setuptools_scm-3.3.3-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/wheel-0.33.6-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/jupyter_client-5.3.3-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/nbformat-4.4.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pip-19.2.3-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pluggy-0.13.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/prompt_toolkit-2.0.9-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ipython-7.8.0-py37h39e3cac_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/nbconvert-5.6.0-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pytest-5.0.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/ipykernel-5.1.2-py37h39e3cac_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pytest-remotedata-0.3.2-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/notebook-6.0.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/qtconsole-4.5.5-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/widgetsnbextension-3.5.1-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/asdf-2.4.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/asteval-0.9.13-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/bokeh-1.3.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/bottleneck-1.2.1-py37h035aef0_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/fast-histogram-0.7-py37hdd07704_1000.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/h5py-2.9.0-py37h7918eee_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/imageio-2.5.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/matplotlib-3.1.1-py37h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/jwxml-0.3.0-py37_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl_fft-1.0.14-py37ha843d7b_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/mkl_random-1.1.0-py37hd6b4f25_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/numpy-1.17.2-py37haad9e8e_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/mpl-scatter-density-0.6-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pandas-0.25.1-py37he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyqtgraph-0.10.0-py37h28b3542_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/pytest-doctestplus-0.4.0-py_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/pywavelets-1.0.3-py37hdd07704_1.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/scipy-1.3.1-py37h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stsci.imagestats-1.6.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stsci.stimage-0.2.4-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/noarch/dask-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/scikit-image-0.15.0-py37he6710b0_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/scikit-learn-0.21.3-py37hd81dba3_0.tar.bz2 +https://repo.continuum.io/pkgs/main/linux-64/astropy-3.2.1-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/ginga-3.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/gwcs-0.11.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/poppy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/pysiaf-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/spherical-geometry-1.2.17-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/photutils-0.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/specutils-0.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stginga-1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/tweakwcs-0.5.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/webbpsf-0.8.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/astroimtools-0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/imexam-0.8.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/stsci-data-analysis-3.0.0-py37_0.tar.bz2 diff --git a/de/a/latest-osx b/de/a/latest-osx new file mode 100644 index 0000000..39776dd --- /dev/null +++ b/de/a/latest-osx @@ -0,0 +1,177 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/blas-1.0-mkl.conda +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2019.8.28-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/intel-openmp-2019.4-233.conda +https://repo.anaconda.com/pkgs/main/osx-64/jpeg-9b-he5867d9_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libgfortran-3.0.1-h93005f0_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/libiconv-1.15-hdd342a3_7.conda +https://repo.anaconda.com/pkgs/main/osx-64/libsodium-1.0.16-h3efe00b_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/pandoc-2.2.3.2-0.conda +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-data-0.8.0-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/yaml-0.1.7-hc338f04_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libpng-1.6.37-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libxml2-2.9.9-hf6e021a_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/mkl-2019.4-233.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1d-h1de35cc_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zstd-1.3.7-h5bba6e5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/freetype-2.9.1-hb4e5f40_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/icu-58.2-h4b95b61_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/libtiff-4.0.10-hcb84e12_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.1-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/pcre-8.43-h0a44026_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zeromq-4.3.1-h0a44026_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/gettext-0.19.8.1-h15daf44_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libxslt-1.1.33-h33a18ac_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-7.0-h1de35cc_5.conda +https://repo.anaconda.com/pkgs/main/osx-64/glib-2.56.2-hd9629dc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.29.0-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/dbus-1.13.6-h90a0687_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.4-h359304d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/qt-5.9.7-h468cd18_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/atomicwrites-1.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/attrs-19.1.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.9.11-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/click-7.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/cloudpickle-1.2.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-core-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/decorator-4.4.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/dill-0.3.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/entrypoints-0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/fsspec-0.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/heapdict-1.0.0-py37_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/joblib-0.13.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/kiwisolver-1.1.0-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/locket-0.2.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/lxml-4.4.1-py37hef8c89e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/markupsafe-1.1.1-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mistune-0.8.4-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/more-itertools-7.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/msgpack-python-0.6.1-py37h04f5b5a_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/olefile-0.46-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/parso-0.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/psutil-5.6.3-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/py-1.8.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/pyopengl-3.1.3b1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pyparsing-2.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python.app-2-py37_9.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytz-2019.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyyaml-5.1.2-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyzmq-18.1.0-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/send2trash-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sip-4.19.8-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/six-1.12.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/tblib-1.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/testpath-0.4.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tornado-6.0.3-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/webencodings-0.5.1-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/xlrd-1.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/zipp-0.5.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cytoolz-0.10.0-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/importlib_metadata-0.23-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jedi-0.15.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl-service-2.3.0-py37hfbe908c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/openpyxl-2.6.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/packaging-19.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/partd-1.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pexpect-4.7.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pillow-6.1.0-py37hb68e598_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyqt-5.9.2-py37h655552a_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyrsistent-0.14.11-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python-dateutil-2.8.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtawesome-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/retrying-1.3.3-py37_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-41.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/terminado-0.8.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/zict-1.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/bleach-3.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cython-0.29.13-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/distributed-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jinja2-2.10.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jsonschema-3.0.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_core-4.5.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/networkx-2.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-base-1.16.5-py37h6575580_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/plotly-4.1.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pluggy-0.13.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/setuptools_scm-3.3.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.33.6-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_client-5.3.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/nbformat-4.4.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pip-19.2.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/prompt_toolkit-2.0.9-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-5.1.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython-7.8.0-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/nbconvert-5.6.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-remotedata-0.3.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipykernel-5.1.2-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/notebook-6.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtconsole-4.5.5-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/widgetsnbextension-3.5.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/bokeh-1.3.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/h5py-2.9.0-py37h3134771_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/imageio-2.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/matplotlib-3.1.1-py37h54f8f79_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl_fft-1.0.14-py37h5e564d8_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl_random-1.1.0-py37ha771720_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-1.16.5-py37hacdab7b_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/asdf-2.4.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/asteval-0.9.13-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/jwxml-0.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandas-0.25.1-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyqtgraph-0.10.0-py37h28b3542_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-doctestplus-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pywavelets-1.0.3-py37h1d22016_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scipy-1.3.1-py37h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.imagestats-1.6.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.stimage-0.2.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-2.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scikit-image-0.15.0-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scikit-learn-0.21.2-py37h27c97d8_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/astropy-3.2.1-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/ginga-3.0.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/gwcs-0.11.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/poppy-0.8.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/pysiaf-0.5.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/spherical-geometry-1.2.17-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/photutils-0.7-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/specutils-0.6-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stginga-1.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/tweakwcs-0.5.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-0.8.0-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/astroimtools-0.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/imexam-0.8.1-py37_0.tar.bz2 diff --git a/de/b/README.md b/de/b/README.md new file mode 100644 index 0000000..9d1dc28 --- /dev/null +++ b/de/b/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each DE release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n de-b --file http://ssb.stsci.edu/releases/de/b/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n de-b --file http://ssb.stsci.edu/releases/de/b/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.07-Linux-x86_64.sh +$ bash Anaconda3-2019.07-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.10-Linux-x86_64.sh +$ bash Miniconda3-4.7.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the environment + +``` +$ conda create -n de-b --file http://ssb.stsci.edu/releases/de/b/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the environment + +``` +$ source activate de-b +``` diff --git a/de/b/de-b-linux-py36.final.txt b/de/b/de-b-linux-py36.final.txt new file mode 100644 index 0000000..6289ede --- /dev/null +++ b/de/b/de-b-linux-py36.final.txt @@ -0,0 +1,186 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/blas-1.0-mkl.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.1.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/da5-notebooks-1.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/jdat_notebooks-0.1.0-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/webbpsf-data-0.9.0-1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gmp-6.1.2-h6c8ec71_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1f-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/glib-2.63.1-h5a9c865_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libxml2-2.9.9-hea5a465_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandoc-2.2.3.2-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/zeromq-4.3.1-he6710b0_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/dbus-1.13.12-h746ee38_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libtiff-4.1.0-h2733197_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.31.1-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/python-3.6.10-hcf32534_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/alabaster-0.7.12-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/asn1crypto-1.3.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/attrs-19.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2019.11.28-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/chardet-3.0.4-py36_1003.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/cloudpickle-1.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-core-2.13.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/decorator-4.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/docutils-0.16-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/et_xmlfile-1.0.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/idna-2.9-py_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imagesize-1.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/lxml-4.5.0-py36hefd8a0e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mistune-0.8.4-py36h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/more-itertools-8.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/olefile-0.46-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandocfilters-1.4.2-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/parso-0.6.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/psutil-5.7.0-py36h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/py-1.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pycparser-2.20-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pyparsing-2.4.6-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pysocks-1.7.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytz-2019.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyyaml-5.3.1-py36h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyzmq-18.1.1-py36he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/semantic_version-2.8.4-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/send2trash-1.5.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/six-1.14.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/snowballstemmer-2.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sortedcontainers-2.1.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-applehelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-htmlhelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-serializinghtml-1.1.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/testpath-0.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/tornado-6.0.4-py36h7b6447c_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/wcwidth-0.1.9-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/zipp-2.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/babel-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cffi-1.14.0-py36h2e261b9_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cytoolz-0.10.1-py36h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/hypothesis-5.5.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/importlib_metadata-1.5.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jedi-0.16.0-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/openpyxl-3.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/packaging-20.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pexpect-4.8.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pillow-7.0.0-py36hb39fc2d_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyrsistent-0.16.0-py36h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/python-dateutil-2.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-46.1.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/terminado-0.8.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/traitlets-4.3.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/bleach-3.1.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cryptography-2.8-py36h1ba5d50_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cython-0.29.15-py36he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jinja2-2.11.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/joblib-0.14.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jsonschema-3.2.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jupyter_core-4.6.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/networkx-2.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pluggy-0.13.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pygments-2.6.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/setuptools_scm-3.4.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.34.2-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_client-6.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/nbformat-5.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.0.2-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt-toolkit-3.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyopenssl-19.1.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-5.0.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/nbconvert-5.6.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt_toolkit-3.0.4-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-header-0.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-remotedata-0.3.2-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/urllib3-1.25.8-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipython-7.13.0-py36h5ca1d4c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/requests-2.23.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipykernel-5.1.4-py36h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinx-2.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/notebook-6.0.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/numpydoc-0.9.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/widgetsnbextension-3.5.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/asdf-2.5.2-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imageio-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/intel-openmp-2020.0-166.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl-2020.0-166.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl-service-2.3.0-py36he904b0f_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/numpy-base-1.18.1-py36hde5b4d6_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/matplotlib-3.1.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/jwxml-0.3.0-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/matplotlib-base-3.1.3-py36hef1b27d_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl_fft-1.0.15-py36ha843d7b_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl_random-1.1.0-py36hd6b4f25_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/numpy-1.18.1-py36h4f9e942_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-doctestplus-0.5.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pywavelets-1.1.1-py36h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/scipy-1.4.1-py36h0b6359f_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-0.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/scikit-image-0.16.2-py36h0573a6f_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/scikit-learn-0.22.1-py36hd81dba3_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/astropy-4.0-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/ginga-3.0.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/gwcs-0.13.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/poppy-0.9.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/pysiaf-0.7.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/photutils-0.7.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/specutils-1.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/stginga-1.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/tweakwcs-0.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/astroimtools-0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/imexam-0.9.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/webbpsf-0.9.0-py36_1.tar.bz2 diff --git a/de/b/de-b-linux-py37.final.txt b/de/b/de-b-linux-py37.final.txt new file mode 100644 index 0000000..ec38a8b --- /dev/null +++ b/de/b/de-b-linux-py37.final.txt @@ -0,0 +1,186 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/blas-1.0-mkl.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.1.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/da5-notebooks-1.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/jdat_notebooks-0.1.0-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/webbpsf-data-0.9.0-1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gmp-6.1.2-h6c8ec71_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1f-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/glib-2.63.1-h5a9c865_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libxml2-2.9.9-hea5a465_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandoc-2.2.3.2-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/zeromq-4.3.1-he6710b0_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/dbus-1.13.12-h746ee38_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libtiff-4.1.0-h2733197_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.31.1-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.7-hcf32534_0_cpython.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/alabaster-0.7.12-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/asn1crypto-1.3.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/atomicwrites-1.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/attrs-19.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2019.11.28-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/chardet-3.0.4-py37_1003.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/cloudpickle-1.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-core-2.13.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/decorator-4.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/docutils-0.16-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/entrypoints-0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/idna-2.9-py_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imagesize-1.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/kiwisolver-1.1.0-py37he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/lxml-4.5.0-py37hefd8a0e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/markupsafe-1.1.1-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mistune-0.8.4-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/more-itertools-8.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/olefile-0.46-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/parso-0.6.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/psutil-5.7.0-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/py-1.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pycparser-2.20-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pyparsing-2.4.6-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pysocks-1.7.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytz-2019.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyyaml-5.3.1-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyzmq-18.1.1-py37he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/semantic_version-2.8.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/send2trash-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/six-1.14.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/snowballstemmer-2.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-applehelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-htmlhelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-serializinghtml-1.1.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/testpath-0.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/tornado-6.0.4-py37h7b6447c_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/wcwidth-0.1.9-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/webencodings-0.5.1-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/zipp-2.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/babel-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cffi-1.14.0-py37h2e261b9_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cytoolz-0.10.1-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/hypothesis-5.5.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/importlib_metadata-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jedi-0.16.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/openpyxl-3.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/packaging-20.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pexpect-4.8.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pillow-7.0.0-py37hb39fc2d_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyrsistent-0.16.0-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/python-dateutil-2.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-46.1.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/terminado-0.8.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/traitlets-4.3.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/bleach-3.1.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cryptography-2.8-py37h1ba5d50_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cython-0.29.15-py37he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jinja2-2.11.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/joblib-0.14.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jsonschema-3.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jupyter_core-4.6.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/networkx-2.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pluggy-0.13.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pygments-2.6.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/setuptools_scm-3.4.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.34.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_client-6.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/nbformat-5.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.0.2-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt-toolkit-3.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyopenssl-19.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-5.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/nbconvert-5.6.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt_toolkit-3.0.4-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-header-0.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-remotedata-0.3.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/urllib3-1.25.8-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipython-7.13.0-py37h5ca1d4c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/requests-2.23.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipykernel-5.1.4-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinx-2.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/notebook-6.0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/numpydoc-0.9.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/widgetsnbextension-3.5.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/asdf-2.5.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imageio-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/intel-openmp-2020.0-166.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl-2020.0-166.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl-service-2.3.0-py37he904b0f_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/numpy-base-1.18.1-py37hde5b4d6_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/matplotlib-3.1.3-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/jwxml-0.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/matplotlib-base-3.1.3-py37hef1b27d_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl_fft-1.0.15-py37ha843d7b_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl_random-1.1.0-py37hd6b4f25_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/numpy-1.18.1-py37h4f9e942_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-doctestplus-0.5.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pywavelets-1.1.1-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/scipy-1.4.1-py37h0b6359f_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/stsci.imagestats-1.6.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/stsci.stimage-0.2.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-0.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/scikit-image-0.16.2-py37h0573a6f_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/scikit-learn-0.22.1-py37hd81dba3_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/astropy-4.0-py37h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/ginga-3.0.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/gwcs-0.13.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/poppy-0.9.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/pysiaf-0.7.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/spherical-geometry-1.2.18-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/photutils-0.7.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/specutils-1.0-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/stginga-1.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/tweakwcs-0.6.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/astroimtools-0.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/imexam-0.9.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/webbpsf-0.9.0-py37_1.tar.bz2 diff --git a/de/b/de-b-osx-py36.final.txt b/de/b/de-b-osx-py36.final.txt new file mode 100644 index 0000000..17da246 --- /dev/null +++ b/de/b/de-b-osx-py36.final.txt @@ -0,0 +1,174 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/blas-1.0-mkl.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.1.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/da5-notebooks-1.0-1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/jdat_notebooks-0.1.0-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libsodium-1.0.16-h3efe00b_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandoc-2.2.3.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-data-0.9.0-1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libxml2-2.9.9-hf6e021a_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl-2019.4-233.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1f-h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libtiff-4.1.0-hcb84e12_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/zeromq-4.3.1-h0a44026_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.31.1-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python-3.6.10-hc70fcce_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/alabaster-0.7.12-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/asn1crypto-1.3.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/attrs-19.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.11.28-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/chardet-3.0.4-py36_1003.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/cloudpickle-1.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-core-2.13.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/decorator-4.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/docutils-0.16-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/et_xmlfile-1.0.1-py36h1315bdc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/idna-2.9-py_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imagesize-1.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/lxml-4.5.0-py36hef8c89e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mistune-0.8.4-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/more-itertools-8.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/olefile-0.46-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandocfilters-1.4.2-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/parso-0.6.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/psutil-5.7.0-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/py-1.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pycparser-2.20-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pyparsing-2.4.6-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pysocks-1.7.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytz-2019.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyyaml-5.3.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyzmq-18.1.1-py36h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/semantic_version-2.8.4-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/send2trash-1.5.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/six-1.14.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/snowballstemmer-2.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sortedcontainers-2.1.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-applehelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-htmlhelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-serializinghtml-1.1.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/testpath-0.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tornado-6.0.4-py36h1de35cc_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/wcwidth-0.1.9-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/zipp-2.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/babel-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cffi-1.14.0-py36hb5b8e2f_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cytoolz-0.10.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/hypothesis-5.5.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/importlib_metadata-1.5.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jedi-0.16.0-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl-service-2.3.0-py36hfbe908c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/openpyxl-3.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/packaging-20.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pexpect-4.8.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pillow-7.0.0-py36h4655f20_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyrsistent-0.16.0-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/python-dateutil-2.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-46.1.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/terminado-0.8.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/traitlets-4.3.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/bleach-3.1.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cryptography-2.8-py36ha12b0ac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cython-0.29.15-py36h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jinja2-2.11.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/joblib-0.14.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jsonschema-3.2.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jupyter_core-4.6.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/networkx-2.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-base-1.18.1-py36h6575580_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pluggy-0.13.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pygments-2.6.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/setuptools_scm-3.4.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.34.2-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_client-6.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/nbformat-5.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.0.2-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt-toolkit-3.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyopenssl-19.1.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-5.0.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/nbconvert-5.6.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt_toolkit-3.0.4-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-header-0.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-remotedata-0.3.2-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/urllib3-1.25.8-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython-7.13.0-py36h5ca1d4c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/requests-2.23.0-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipykernel-5.1.4-py36h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinx-2.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/notebook-6.0.3-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/numpydoc-0.9.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/widgetsnbextension-3.5.1-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/asdf-2.5.2-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imageio-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/matplotlib-3.1.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/jwxml-0.3.0-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/matplotlib-base-3.1.3-py36h9aa3819_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl_fft-1.0.15-py36h5e564d8_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl_random-1.1.0-py36ha771720_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-1.18.1-py36h7241aed_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-doctestplus-0.5.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pywavelets-1.1.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scipy-1.4.1-py36h9fa6033_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-0.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scikit-image-0.16.2-py36h6c726b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scikit-learn-0.22.1-py36h27c97d8_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/astropy-4.0-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/ginga-3.0.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/gwcs-0.13.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/poppy-0.9.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/pysiaf-0.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/photutils-0.7.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/specutils-1.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stginga-1.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/tweakwcs-0.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/astroimtools-0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/imexam-0.9.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-0.9.0-py36_1.tar.bz2 diff --git a/de/b/de-b-osx-py37.final.txt b/de/b/de-b-osx-py37.final.txt new file mode 100644 index 0000000..87cedf1 --- /dev/null +++ b/de/b/de-b-osx-py37.final.txt @@ -0,0 +1,182 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/blas-1.0-mkl.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.1.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/da5-notebooks-1.0-1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/jdat_notebooks-0.1.0-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libsodium-1.0.16-h3efe00b_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandoc-2.2.3.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-data-0.9.0-1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libxml2-2.9.9-hf6e021a_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl-2019.4-233.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1f-h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libtiff-4.1.0-hcb84e12_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/zeromq-4.3.1-h0a44026_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/glib-2.63.1-hd977a24_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.31.1-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/dbus-1.13.12-h90a0687_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.7-hc70fcce_0_cpython.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/alabaster-0.7.12-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/asn1crypto-1.3.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/atomicwrites-1.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/attrs-19.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.11.28-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/chardet-3.0.4-py37_1003.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/cloudpickle-1.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-core-2.13.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/decorator-4.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/docutils-0.16-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/entrypoints-0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/idna-2.9-py_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imagesize-1.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/kiwisolver-1.1.0-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/lxml-4.5.0-py37hef8c89e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/markupsafe-1.1.1-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mistune-0.8.4-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/more-itertools-8.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/olefile-0.46-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/parso-0.6.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/psutil-5.7.0-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/py-1.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pycparser-2.20-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pyparsing-2.4.6-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pysocks-1.7.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytz-2019.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyyaml-5.3.1-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyzmq-18.1.1-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/semantic_version-2.8.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/send2trash-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sip-4.19.8-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/six-1.14.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/snowballstemmer-2.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-applehelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-htmlhelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-serializinghtml-1.1.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/testpath-0.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tornado-6.0.4-py37h1de35cc_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/wcwidth-0.1.9-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/webencodings-0.5.1-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/zipp-2.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/babel-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cffi-1.14.0-py37hb5b8e2f_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cytoolz-0.10.1-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/hypothesis-5.5.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/importlib_metadata-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jedi-0.16.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl-service-2.3.0-py37hfbe908c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/openpyxl-3.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/packaging-20.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pexpect-4.8.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pillow-7.0.0-py37h4655f20_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyqt-5.9.2-py37h655552a_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyrsistent-0.16.0-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/python-dateutil-2.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-46.1.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/terminado-0.8.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/traitlets-4.3.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/bleach-3.1.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cryptography-2.8-py37ha12b0ac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cython-0.29.15-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jinja2-2.11.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/joblib-0.14.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jsonschema-3.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jupyter_core-4.6.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/networkx-2.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-base-1.18.1-py37h6575580_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pluggy-0.13.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pygments-2.6.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/setuptools_scm-3.4.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.34.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_client-6.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/nbformat-5.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.0.2-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt-toolkit-3.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyopenssl-19.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-5.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/nbconvert-5.6.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt_toolkit-3.0.4-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-header-0.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-remotedata-0.3.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/urllib3-1.25.8-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython-7.13.0-py37h5ca1d4c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/requests-2.23.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipykernel-5.1.4-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinx-2.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/notebook-6.0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/numpydoc-0.9.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/widgetsnbextension-3.5.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/asdf-2.5.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imageio-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/matplotlib-3.1.3-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/jwxml-0.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/matplotlib-base-3.1.3-py37h9aa3819_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl_fft-1.0.15-py37h5e564d8_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl_random-1.1.0-py37ha771720_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-1.18.1-py37h7241aed_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-doctestplus-0.5.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pywavelets-1.1.1-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scipy-1.4.1-py37h9fa6033_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.imagestats-1.6.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.stimage-0.2.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-0.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scikit-image-0.16.2-py37h6c726b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scikit-learn-0.22.1-py37h27c97d8_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/astropy-4.0-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/ginga-3.0.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/gwcs-0.13.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/poppy-0.9.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/pysiaf-0.7.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/spherical-geometry-1.2.18-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/photutils-0.7.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/specutils-1.0-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stginga-1.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/tweakwcs-0.6.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/astroimtools-0.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/imexam-0.9.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-0.9.0-py37_1.tar.bz2 diff --git a/de/b/latest-linux b/de/b/latest-linux new file mode 100644 index 0000000..ec38a8b --- /dev/null +++ b/de/b/latest-linux @@ -0,0 +1,186 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/blas-1.0-mkl.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.1.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/da5-notebooks-1.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/jdat_notebooks-0.1.0-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/webbpsf-data-0.9.0-1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gmp-6.1.2-h6c8ec71_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libsodium-1.0.16-h1bed415_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1f-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/glib-2.63.1-h5a9c865_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libxml2-2.9.9-hea5a465_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandoc-2.2.3.2-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/zeromq-4.3.1-he6710b0_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/dbus-1.13.12-h746ee38_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libtiff-4.1.0-h2733197_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.31.1-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.7-hcf32534_0_cpython.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/alabaster-0.7.12-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/asn1crypto-1.3.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/atomicwrites-1.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/attrs-19.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2019.11.28-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/chardet-3.0.4-py37_1003.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/cloudpickle-1.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-core-2.13.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/decorator-4.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/docutils-0.16-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/entrypoints-0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/idna-2.9-py_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imagesize-1.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/kiwisolver-1.1.0-py37he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/lxml-4.5.0-py37hefd8a0e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/markupsafe-1.1.1-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mistune-0.8.4-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/more-itertools-8.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/olefile-0.46-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/parso-0.6.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/psutil-5.7.0-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/py-1.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pycparser-2.20-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pyparsing-2.4.6-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pysocks-1.7.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytz-2019.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyyaml-5.3.1-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyzmq-18.1.1-py37he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/semantic_version-2.8.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/send2trash-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/six-1.14.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/snowballstemmer-2.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-applehelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-htmlhelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-serializinghtml-1.1.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/testpath-0.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/tornado-6.0.4-py37h7b6447c_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/wcwidth-0.1.9-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/webencodings-0.5.1-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/zipp-2.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/babel-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cffi-1.14.0-py37h2e261b9_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cytoolz-0.10.1-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/hypothesis-5.5.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/importlib_metadata-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jedi-0.16.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/openpyxl-3.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/packaging-20.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pexpect-4.8.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pillow-7.0.0-py37hb39fc2d_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyrsistent-0.16.0-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/python-dateutil-2.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-46.1.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/terminado-0.8.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/traitlets-4.3.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/bleach-3.1.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cryptography-2.8-py37h1ba5d50_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/cython-0.29.15-py37he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jinja2-2.11.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/joblib-0.14.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jsonschema-3.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/jupyter_core-4.6.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/networkx-2.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pluggy-0.13.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pygments-2.6.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/setuptools_scm-3.4.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.34.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_client-6.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/nbformat-5.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.0.2-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt-toolkit-3.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pyopenssl-19.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-5.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/nbconvert-5.6.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt_toolkit-3.0.4-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-header-0.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-remotedata-0.3.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/urllib3-1.25.8-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipython-7.13.0-py37h5ca1d4c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/requests-2.23.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/ipykernel-5.1.4-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinx-2.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/notebook-6.0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/numpydoc-0.9.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/widgetsnbextension-3.5.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/asdf-2.5.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imageio-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/intel-openmp-2020.0-166.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl-2020.0-166.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl-service-2.3.0-py37he904b0f_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/numpy-base-1.18.1-py37hde5b4d6_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/matplotlib-3.1.3-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/jwxml-0.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/matplotlib-base-3.1.3-py37hef1b27d_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl_fft-1.0.15-py37ha843d7b_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/mkl_random-1.1.0-py37hd6b4f25_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/numpy-1.18.1-py37h4f9e942_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-doctestplus-0.5.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pywavelets-1.1.1-py37h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/scipy-1.4.1-py37h0b6359f_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/stsci.imagestats-1.6.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/stsci.stimage-0.2.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-0.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/scikit-image-0.16.2-py37h0573a6f_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/scikit-learn-0.22.1-py37hd81dba3_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/astropy-4.0-py37h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/ginga-3.0.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/gwcs-0.13.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/poppy-0.9.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/pysiaf-0.7.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/spherical-geometry-1.2.18-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/photutils-0.7.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/specutils-1.0-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/stginga-1.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/tweakwcs-0.6.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/astroimtools-0.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/imexam-0.9.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/linux-64/webbpsf-0.9.0-py37_1.tar.bz2 diff --git a/de/b/latest-osx b/de/b/latest-osx new file mode 100644 index 0000000..87cedf1 --- /dev/null +++ b/de/b/latest-osx @@ -0,0 +1,182 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/blas-1.0-mkl.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.1.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/da5-notebooks-1.0-1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/jdat_notebooks-0.1.0-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libsodium-1.0.16-h3efe00b_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandoc-2.2.3.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-data-0.9.0-1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libxml2-2.9.9-hf6e021a_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl-2019.4-233.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1f-h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libtiff-4.1.0-hcb84e12_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/zeromq-4.3.1-h0a44026_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/glib-2.63.1-hd977a24_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.31.1-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/dbus-1.13.12-h90a0687_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.7-hc70fcce_0_cpython.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/alabaster-0.7.12-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/asn1crypto-1.3.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/atomicwrites-1.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/attrs-19.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.11.28-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/chardet-3.0.4-py37_1003.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/cloudpickle-1.3.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/dask-core-2.13.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/decorator-4.4.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/defusedxml-0.6.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/docutils-0.16-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/entrypoints-0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/et_xmlfile-1.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/idna-2.9-py_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imagesize-1.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jdcal-1.4.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/kiwisolver-1.1.0-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/lxml-4.5.0-py37hef8c89e_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/markupsafe-1.1.1-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mistune-0.8.4-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/more-itertools-8.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/olefile-0.46-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pandocfilters-1.4.2-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/parso-0.6.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prometheus_client-0.7.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/psutil-5.7.0-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/py-1.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pycparser-2.20-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pyparsing-2.4.6-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pysocks-1.7.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytz-2019.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyyaml-5.3.1-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyzmq-18.1.1-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/qtpy-1.9.0-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/semantic_version-2.8.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/send2trash-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sip-4.19.8-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/six-1.14.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/snowballstemmer-2.0.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/sortedcontainers-2.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-applehelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-devhelp-1.0.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-htmlhelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-jsmath-1.0.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-qthelp-1.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinxcontrib-serializinghtml-1.1.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/testpath-0.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/toolz-0.10.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tornado-6.0.4-py37h1de35cc_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/wcwidth-0.1.9-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/webencodings-0.5.1-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/zipp-2.2.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/babel-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cffi-1.14.0-py37hb5b8e2f_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cytoolz-0.10.1-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/hypothesis-5.5.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/importlib_metadata-1.5.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jedi-0.16.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl-service-2.3.0-py37hfbe908c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/openpyxl-3.0.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/packaging-20.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pexpect-4.8.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pillow-7.0.0-py37h4655f20_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyqt-5.9.2-py37h655552a_2.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyrsistent-0.16.0-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/python-dateutil-2.8.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-46.1.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/terminado-0.8.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/traitlets-4.3.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/bleach-3.1.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cryptography-2.8-py37ha12b0ac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/cython-0.29.15-py37h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jinja2-2.11.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/joblib-0.14.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jsonschema-3.2.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/jupyter_core-4.6.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/networkx-2.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-base-1.18.1-py37h6575580_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pluggy-0.13.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pygments-2.6.1-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/setuptools_scm-3.4.3-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.34.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/jupyter_client-6.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/nbformat-5.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.0.2-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt-toolkit-3.0.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pyopenssl-19.1.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-5.0.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/nbconvert-5.6.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/prompt_toolkit-3.0.4-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-header-0.1.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-openfiles-0.4.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-remotedata-0.3.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/urllib3-1.25.8-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipython-7.13.0-py37h5ca1d4c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/requests-2.23.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ipykernel-5.1.4-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/sphinx-2.4.4-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/notebook-6.0.3-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/numpydoc-0.9.2-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/widgetsnbextension-3.5.1-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/ipywidgets-7.5.1-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/asdf-2.5.2-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/imageio-2.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/matplotlib-3.1.3-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/jwxml-0.3.0-py37_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/matplotlib-base-3.1.3-py37h9aa3819_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl_fft-1.0.15-py37h5e564d8_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/mkl_random-1.1.0-py37ha771720_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/numpy-1.18.1-py37h7241aed_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-doctestplus-0.5.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pywavelets-1.1.1-py37h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scipy-1.4.1-py37h9fa6033_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.imagestats-1.6.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stsci.stimage-0.2.4-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/noarch/pytest-astropy-0.8.0-py_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scikit-image-0.16.2-py37h6c726b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/scikit-learn-0.22.1-py37h27c97d8_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/astropy-4.0-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/ginga-3.0.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/gwcs-0.13.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/poppy-0.9.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/pysiaf-0.7.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/spherical-geometry-1.2.18-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/photutils-0.7.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/specutils-1.0-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/stginga-1.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/tweakwcs-0.6.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/astroimtools-0.2-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/imexam-0.9.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda/osx-64/webbpsf-0.9.0-py37_1.tar.bz2 diff --git a/de/c/README.md b/de/c/README.md new file mode 100644 index 0000000..e74350c --- /dev/null +++ b/de/c/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each DE release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda env create -n de-c --file http://ssb.stsci.edu/releases/de/c/latest-linux.yml +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda env update -n de-c --file http://ssb.stsci.edu/releases/de/c/latest-linux.yml +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-py37_4.8.3-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.3-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +## Install the environment + +``` +$ conda env create -n de-c --file http://ssb.stsci.edu/releases/de/c/latest-linux.yml +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the environment + +``` +$ source activate de-c +``` diff --git a/de/c/de-c-linux-py37.00.yml b/de/c/de-c-linux-py37.00.yml new file mode 100644 index 0000000..2e3b386 --- /dev/null +++ b/de/c/de-c-linux-py37.00.yml @@ -0,0 +1,167 @@ +# delivery_name: de-c-linux-py37.00 +# creation_time: Tue Sep 29 17:37:21 EDT 2020 +# conda_version: 4.8.5 +channels: + - https://ssb.stsci.edu/astroconda + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - ca-certificates=2020.7.22=0 + - certifi=2020.6.20=py37_0 + - dbus=1.13.16=hb2f20db_0 + - expat=2.2.9=he6710b0_2 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.10.2=h5ab3b9f_0 + - glib=2.65.0=h3eb4bd4_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb31296c_0 + - icu=58.2=he6710b0_3 + - jdat_notebooks=0.2.0=0 + - jpeg=9b=h024ee3a_2 + - ld_impl_linux-64=2.33.1=h53a641e_7 + - libedit=3.1.20191231=h14c3975_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=9.1.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=9.1.0=hdf63c60_0 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.14=h7b6447c_0 + - libxml2=2.9.10=he19cac6_1 + - ncurses=6.2=he6710b0_1 + - openssl=1.1.1h=h7b6447c_0 + - pcre=8.44=he6710b0_0 + - pip=20.2.2=py37_0 + - python=3.7.9=h7579374_0 + - qt=5.9.7=h5867ecd_1 + - readline=8.0=h7b6447c_0 + - setuptools=49.6.0=py37_1 + - sqlite=3.33.0=h62c20be_0 + - tk=8.6.10=hbc83047_0 + - wheel=0.35.1=py_0 + - xz=5.2.5=h7b6447c_0 + - zlib=1.2.11=h7b6447c_3 + - pip: + - argon2-cffi==20.1.0 + - asdf==2.7.1 + - asteval==0.9.19 + - astroimtools==0.3 + - astropy==4.1rc2 + - async-generator==1.10 + - attrs==20.2.0 + - backcall==0.2.0 + - bleach==3.2.1 + - bottleneck==1.3.2 + - bqplot==0.12.17 + - bqplot-image-gl==1.0.0 + - cffi==1.14.3 + - chardet==3.0.4 + - click==7.1.2 + - cycler==0.10.0 + - dask==2.28.0 + - decorator==4.4.2 + - defusedxml==0.6.0 + - dill==0.3.2 + - echo==0.5 + - entrypoints==0.3 + - fast-histogram==0.9 + - freetype-py==2.2.0 + - ginga==3.1.0 + - glue-astronomy==0.1 + - glue-core==1.0.0 + - glue-jupyter==0.2.1 + - glue-vispy-viewers==1.0.0 + - gwcs==0.14.0 + - h5py==2.10.0 + - idna==2.10 + - imageio==2.9.0 + - imexam==0.9.1 + - importlib-metadata==2.0.0 + - ipydatawidgets==4.1.0 + - ipygoldenlayout==0.3.0 + - ipykernel==5.3.4 + - ipympl==0.5.8 + - ipysplitpanes==0.1.0 + - ipython==7.18.1 + - ipython-genutils==0.2.0 + - ipyvolume==0.5.2 + - ipyvue==1.4.0 + - ipyvuetify==1.5.1 + - ipywebrtc==0.5.0 + - ipywidgets==7.5.1 + - jdaviz==1.0.2 + - jedi==0.17.2 + - jinja2==2.11.2 + - joblib==0.16.0 + - jsonschema==3.2.0 + - jupyter-client==5.3.5 + - jupyter-core==4.6.3 + - jupyter-server==0.1.1 + - jupyterlab-pygments==0.1.2 + - kiwisolver==1.2.0 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - mistune==0.8.4 + - more-itertools==8.5.0 + - mpl-scatter-density==0.7 + - nbconvert==5.6.1 + - nbformat==5.0.7 + - networkx==2.5 + - notebook==6.1.4 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - pandocfilters==1.4.2 + - parso==0.7.1 + - pexpect==4.8.0 + - photutils==1.0.1 + - pickleshare==0.7.5 + - pillow==7.2.0 + - pluggy==0.13.1 + - prometheus-client==0.8.0 + - prompt-toolkit==3.0.7 + - ptyprocess==0.6.0 + - py==1.9.0 + - pycparser==2.20 + - pygments==2.7.1 + - pyopengl==3.1.5 + - pyparsing==2.4.7 + - pyrsistent==0.17.3 + - pytest==5.4.3 + - python-dateutil==2.8.1 + - pythreejs==2.2.0 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - pyzmq==19.0.2 + - qtconsole==4.7.7 + - qtpy==1.9.0 + - radio-beam==0.3.2 + - regions==0.4 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.2 + - semantic-version==2.8.5 + - send2trash==1.5.0 + - six==1.15.0 + - spectral-cube==0.5.0 + - specutils==1.1 + - spherical-geometry==1.2.19 + - stginga==1.2.0 + - stsci-imagestats==1.6.2 + - stsci-stimage==0.2.4 + - terminado==0.9.1 + - testpath==0.4.4 + - tifffile==2020.9.29 + - toolz==0.11.1 + - tornado==6.0.4 + - traitlets==5.0.4 + - traittypes==0.2.1 + - tweakwcs==0.6.5 + - urllib3==1.25.10 + - vispy==0.6.5 + - voila==0.1.23 + - wcwidth==0.2.5 + - webencodings==0.5.1 + - widgetsnbextension==3.5.1 + - xlrd==1.2.0 + - zipp==3.2.0 diff --git a/de/c/de-c-macosx-py37.00.yml b/de/c/de-c-macosx-py37.00.yml new file mode 100644 index 0000000..38e2c11 --- /dev/null +++ b/de/c/de-c-macosx-py37.00.yml @@ -0,0 +1,154 @@ +# delivery_name: de-c-macosx-py37.00 +# creation_time: Tue Sep 29 17:42:24 EDT 2020 +# conda_version: 4.8.5 +channels: + - https://ssb.stsci.edu/astroconda + - defaults +dependencies: + - ca-certificates=2020.7.22=0 + - certifi=2020.6.20=py37_0 + - icu=58.2=h0a44026_3 + - jdat_notebooks=0.2.0=0 + - jpeg=9b=he5867d9_2 + - libcxx=10.0.0=1 + - libedit=3.1.20191231=h1de35cc_1 + - libffi=3.3=hb1e8313_2 + - libpng=1.6.37=ha441bb4_0 + - ncurses=6.2=h0a44026_1 + - openssl=1.1.1h=haf1e3a3_0 + - pip=20.2.2=py37_0 + - python=3.7.9=h26836e1_0 + - qt=5.9.7=h468cd18_1 + - readline=8.0=h1de35cc_0 + - setuptools=49.6.0=py37_1 + - sqlite=3.33.0=hffcf06c_0 + - tk=8.6.10=hb0a8c7a_0 + - wheel=0.35.1=py_0 + - xz=5.2.5=h1de35cc_0 + - zlib=1.2.11=h1de35cc_3 + - pip: + - appnope==0.1.0 + - argon2-cffi==20.1.0 + - asdf==2.7.1 + - asteval==0.9.19 + - astroimtools==0.3 + - astropy==4.1rc2 + - async-generator==1.10 + - attrs==20.2.0 + - backcall==0.2.0 + - bleach==3.2.1 + - bottleneck==1.3.2 + - bqplot==0.12.17 + - bqplot-image-gl==1.0.0 + - cffi==1.14.3 + - chardet==3.0.4 + - click==7.1.2 + - cycler==0.10.0 + - dask==2.28.0 + - decorator==4.4.2 + - defusedxml==0.6.0 + - dill==0.3.2 + - echo==0.5 + - entrypoints==0.3 + - fast-histogram==0.9 + - freetype-py==2.2.0 + - ginga==3.1.0 + - glue-astronomy==0.1 + - glue-core==1.0.0 + - glue-jupyter==0.2.1 + - glue-vispy-viewers==1.0.0 + - gwcs==0.14.0 + - h5py==2.10.0 + - idna==2.10 + - imageio==2.9.0 + - imexam==0.9.1 + - importlib-metadata==2.0.0 + - ipydatawidgets==4.1.0 + - ipygoldenlayout==0.3.0 + - ipykernel==5.3.4 + - ipympl==0.5.8 + - ipysplitpanes==0.1.0 + - ipython==7.18.1 + - ipython-genutils==0.2.0 + - ipyvolume==0.5.2 + - ipyvue==1.4.0 + - ipyvuetify==1.5.1 + - ipywebrtc==0.5.0 + - ipywidgets==7.5.1 + - jdaviz==1.0.2 + - jedi==0.17.2 + - jinja2==2.11.2 + - joblib==0.16.0 + - jsonschema==3.2.0 + - jupyter-client==5.3.5 + - jupyter-core==4.6.3 + - jupyter-server==0.1.1 + - jupyterlab-pygments==0.1.2 + - kiwisolver==1.2.0 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - mistune==0.8.4 + - more-itertools==8.5.0 + - mpl-scatter-density==0.7 + - nbconvert==5.6.1 + - nbformat==5.0.7 + - networkx==2.5 + - notebook==6.1.4 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - pandocfilters==1.4.2 + - parso==0.7.1 + - pexpect==4.8.0 + - photutils==1.0.1 + - pickleshare==0.7.5 + - pillow==7.2.0 + - pluggy==0.13.1 + - prometheus-client==0.8.0 + - prompt-toolkit==3.0.7 + - ptyprocess==0.6.0 + - py==1.9.0 + - pycparser==2.20 + - pygments==2.7.1 + - pyopengl==3.1.5 + - pyparsing==2.4.7 + - pyrsistent==0.17.3 + - pytest==5.4.3 + - python-dateutil==2.8.1 + - pythreejs==2.2.0 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - pyzmq==19.0.2 + - qtconsole==4.7.7 + - qtpy==1.9.0 + - radio-beam==0.3.2 + - regions==0.4 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.2 + - semantic-version==2.8.5 + - send2trash==1.5.0 + - six==1.15.0 + - spectral-cube==0.5.0 + - specutils==1.1 + - spherical-geometry==1.2.19 + - stginga==1.2.0 + - stsci-imagestats==1.6.2 + - stsci-stimage==0.2.4 + - terminado==0.9.1 + - testpath==0.4.4 + - tifffile==2020.9.29 + - toolz==0.11.1 + - tornado==6.0.4 + - traitlets==5.0.4 + - traittypes==0.2.1 + - tweakwcs==0.6.5 + - urllib3==1.25.10 + - vispy==0.6.5 + - voila==0.1.23 + - wcwidth==0.2.5 + - webencodings==0.5.1 + - widgetsnbextension==3.5.1 + - xlrd==1.2.0 + - zipp==3.2.0 diff --git a/de/c/latest-linux.yml b/de/c/latest-linux.yml new file mode 100644 index 0000000..2e3b386 --- /dev/null +++ b/de/c/latest-linux.yml @@ -0,0 +1,167 @@ +# delivery_name: de-c-linux-py37.00 +# creation_time: Tue Sep 29 17:37:21 EDT 2020 +# conda_version: 4.8.5 +channels: + - https://ssb.stsci.edu/astroconda + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - ca-certificates=2020.7.22=0 + - certifi=2020.6.20=py37_0 + - dbus=1.13.16=hb2f20db_0 + - expat=2.2.9=he6710b0_2 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.10.2=h5ab3b9f_0 + - glib=2.65.0=h3eb4bd4_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb31296c_0 + - icu=58.2=he6710b0_3 + - jdat_notebooks=0.2.0=0 + - jpeg=9b=h024ee3a_2 + - ld_impl_linux-64=2.33.1=h53a641e_7 + - libedit=3.1.20191231=h14c3975_1 + - libffi=3.3=he6710b0_2 + - libgcc-ng=9.1.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=9.1.0=hdf63c60_0 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.14=h7b6447c_0 + - libxml2=2.9.10=he19cac6_1 + - ncurses=6.2=he6710b0_1 + - openssl=1.1.1h=h7b6447c_0 + - pcre=8.44=he6710b0_0 + - pip=20.2.2=py37_0 + - python=3.7.9=h7579374_0 + - qt=5.9.7=h5867ecd_1 + - readline=8.0=h7b6447c_0 + - setuptools=49.6.0=py37_1 + - sqlite=3.33.0=h62c20be_0 + - tk=8.6.10=hbc83047_0 + - wheel=0.35.1=py_0 + - xz=5.2.5=h7b6447c_0 + - zlib=1.2.11=h7b6447c_3 + - pip: + - argon2-cffi==20.1.0 + - asdf==2.7.1 + - asteval==0.9.19 + - astroimtools==0.3 + - astropy==4.1rc2 + - async-generator==1.10 + - attrs==20.2.0 + - backcall==0.2.0 + - bleach==3.2.1 + - bottleneck==1.3.2 + - bqplot==0.12.17 + - bqplot-image-gl==1.0.0 + - cffi==1.14.3 + - chardet==3.0.4 + - click==7.1.2 + - cycler==0.10.0 + - dask==2.28.0 + - decorator==4.4.2 + - defusedxml==0.6.0 + - dill==0.3.2 + - echo==0.5 + - entrypoints==0.3 + - fast-histogram==0.9 + - freetype-py==2.2.0 + - ginga==3.1.0 + - glue-astronomy==0.1 + - glue-core==1.0.0 + - glue-jupyter==0.2.1 + - glue-vispy-viewers==1.0.0 + - gwcs==0.14.0 + - h5py==2.10.0 + - idna==2.10 + - imageio==2.9.0 + - imexam==0.9.1 + - importlib-metadata==2.0.0 + - ipydatawidgets==4.1.0 + - ipygoldenlayout==0.3.0 + - ipykernel==5.3.4 + - ipympl==0.5.8 + - ipysplitpanes==0.1.0 + - ipython==7.18.1 + - ipython-genutils==0.2.0 + - ipyvolume==0.5.2 + - ipyvue==1.4.0 + - ipyvuetify==1.5.1 + - ipywebrtc==0.5.0 + - ipywidgets==7.5.1 + - jdaviz==1.0.2 + - jedi==0.17.2 + - jinja2==2.11.2 + - joblib==0.16.0 + - jsonschema==3.2.0 + - jupyter-client==5.3.5 + - jupyter-core==4.6.3 + - jupyter-server==0.1.1 + - jupyterlab-pygments==0.1.2 + - kiwisolver==1.2.0 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - mistune==0.8.4 + - more-itertools==8.5.0 + - mpl-scatter-density==0.7 + - nbconvert==5.6.1 + - nbformat==5.0.7 + - networkx==2.5 + - notebook==6.1.4 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - pandocfilters==1.4.2 + - parso==0.7.1 + - pexpect==4.8.0 + - photutils==1.0.1 + - pickleshare==0.7.5 + - pillow==7.2.0 + - pluggy==0.13.1 + - prometheus-client==0.8.0 + - prompt-toolkit==3.0.7 + - ptyprocess==0.6.0 + - py==1.9.0 + - pycparser==2.20 + - pygments==2.7.1 + - pyopengl==3.1.5 + - pyparsing==2.4.7 + - pyrsistent==0.17.3 + - pytest==5.4.3 + - python-dateutil==2.8.1 + - pythreejs==2.2.0 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - pyzmq==19.0.2 + - qtconsole==4.7.7 + - qtpy==1.9.0 + - radio-beam==0.3.2 + - regions==0.4 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.2 + - semantic-version==2.8.5 + - send2trash==1.5.0 + - six==1.15.0 + - spectral-cube==0.5.0 + - specutils==1.1 + - spherical-geometry==1.2.19 + - stginga==1.2.0 + - stsci-imagestats==1.6.2 + - stsci-stimage==0.2.4 + - terminado==0.9.1 + - testpath==0.4.4 + - tifffile==2020.9.29 + - toolz==0.11.1 + - tornado==6.0.4 + - traitlets==5.0.4 + - traittypes==0.2.1 + - tweakwcs==0.6.5 + - urllib3==1.25.10 + - vispy==0.6.5 + - voila==0.1.23 + - wcwidth==0.2.5 + - webencodings==0.5.1 + - widgetsnbextension==3.5.1 + - xlrd==1.2.0 + - zipp==3.2.0 diff --git a/de/c/latest-macosx.yml b/de/c/latest-macosx.yml new file mode 100644 index 0000000..38e2c11 --- /dev/null +++ b/de/c/latest-macosx.yml @@ -0,0 +1,154 @@ +# delivery_name: de-c-macosx-py37.00 +# creation_time: Tue Sep 29 17:42:24 EDT 2020 +# conda_version: 4.8.5 +channels: + - https://ssb.stsci.edu/astroconda + - defaults +dependencies: + - ca-certificates=2020.7.22=0 + - certifi=2020.6.20=py37_0 + - icu=58.2=h0a44026_3 + - jdat_notebooks=0.2.0=0 + - jpeg=9b=he5867d9_2 + - libcxx=10.0.0=1 + - libedit=3.1.20191231=h1de35cc_1 + - libffi=3.3=hb1e8313_2 + - libpng=1.6.37=ha441bb4_0 + - ncurses=6.2=h0a44026_1 + - openssl=1.1.1h=haf1e3a3_0 + - pip=20.2.2=py37_0 + - python=3.7.9=h26836e1_0 + - qt=5.9.7=h468cd18_1 + - readline=8.0=h1de35cc_0 + - setuptools=49.6.0=py37_1 + - sqlite=3.33.0=hffcf06c_0 + - tk=8.6.10=hb0a8c7a_0 + - wheel=0.35.1=py_0 + - xz=5.2.5=h1de35cc_0 + - zlib=1.2.11=h1de35cc_3 + - pip: + - appnope==0.1.0 + - argon2-cffi==20.1.0 + - asdf==2.7.1 + - asteval==0.9.19 + - astroimtools==0.3 + - astropy==4.1rc2 + - async-generator==1.10 + - attrs==20.2.0 + - backcall==0.2.0 + - bleach==3.2.1 + - bottleneck==1.3.2 + - bqplot==0.12.17 + - bqplot-image-gl==1.0.0 + - cffi==1.14.3 + - chardet==3.0.4 + - click==7.1.2 + - cycler==0.10.0 + - dask==2.28.0 + - decorator==4.4.2 + - defusedxml==0.6.0 + - dill==0.3.2 + - echo==0.5 + - entrypoints==0.3 + - fast-histogram==0.9 + - freetype-py==2.2.0 + - ginga==3.1.0 + - glue-astronomy==0.1 + - glue-core==1.0.0 + - glue-jupyter==0.2.1 + - glue-vispy-viewers==1.0.0 + - gwcs==0.14.0 + - h5py==2.10.0 + - idna==2.10 + - imageio==2.9.0 + - imexam==0.9.1 + - importlib-metadata==2.0.0 + - ipydatawidgets==4.1.0 + - ipygoldenlayout==0.3.0 + - ipykernel==5.3.4 + - ipympl==0.5.8 + - ipysplitpanes==0.1.0 + - ipython==7.18.1 + - ipython-genutils==0.2.0 + - ipyvolume==0.5.2 + - ipyvue==1.4.0 + - ipyvuetify==1.5.1 + - ipywebrtc==0.5.0 + - ipywidgets==7.5.1 + - jdaviz==1.0.2 + - jedi==0.17.2 + - jinja2==2.11.2 + - joblib==0.16.0 + - jsonschema==3.2.0 + - jupyter-client==5.3.5 + - jupyter-core==4.6.3 + - jupyter-server==0.1.1 + - jupyterlab-pygments==0.1.2 + - kiwisolver==1.2.0 + - markupsafe==1.1.1 + - matplotlib==3.3.2 + - mistune==0.8.4 + - more-itertools==8.5.0 + - mpl-scatter-density==0.7 + - nbconvert==5.6.1 + - nbformat==5.0.7 + - networkx==2.5 + - notebook==6.1.4 + - numpy==1.19.2 + - packaging==20.4 + - pandas==1.1.2 + - pandocfilters==1.4.2 + - parso==0.7.1 + - pexpect==4.8.0 + - photutils==1.0.1 + - pickleshare==0.7.5 + - pillow==7.2.0 + - pluggy==0.13.1 + - prometheus-client==0.8.0 + - prompt-toolkit==3.0.7 + - ptyprocess==0.6.0 + - py==1.9.0 + - pycparser==2.20 + - pygments==2.7.1 + - pyopengl==3.1.5 + - pyparsing==2.4.7 + - pyrsistent==0.17.3 + - pytest==5.4.3 + - python-dateutil==2.8.1 + - pythreejs==2.2.0 + - pytz==2020.1 + - pywavelets==1.1.1 + - pyyaml==5.3.1 + - pyzmq==19.0.2 + - qtconsole==4.7.7 + - qtpy==1.9.0 + - radio-beam==0.3.2 + - regions==0.4 + - requests==2.24.0 + - scikit-image==0.17.2 + - scipy==1.5.2 + - semantic-version==2.8.5 + - send2trash==1.5.0 + - six==1.15.0 + - spectral-cube==0.5.0 + - specutils==1.1 + - spherical-geometry==1.2.19 + - stginga==1.2.0 + - stsci-imagestats==1.6.2 + - stsci-stimage==0.2.4 + - terminado==0.9.1 + - testpath==0.4.4 + - tifffile==2020.9.29 + - toolz==0.11.1 + - tornado==6.0.4 + - traitlets==5.0.4 + - traittypes==0.2.1 + - tweakwcs==0.6.5 + - urllib3==1.25.10 + - vispy==0.6.5 + - voila==0.1.23 + - wcwidth==0.2.5 + - webencodings==0.5.1 + - widgetsnbextension==3.5.1 + - xlrd==1.2.0 + - zipp==3.2.0 diff --git a/de/d/README.md b/de/d/README.md new file mode 100644 index 0000000..f94a3ea --- /dev/null +++ b/de/d/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each DE release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda env create -n de-d --file http://ssb.stsci.edu/releases/de/d/latest-linux.yml +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda env update -n de-d --file http://ssb.stsci.edu/releases/de/d/latest-linux.yml +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-py37_4.8.3-Linux-x86_64.sh +$ bash Miniconda3-py37_4.8.3-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +## Install the environment + +``` +$ conda env create -n de-d --file http://ssb.stsci.edu/releases/de/d/latest-linux.yml +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the environment + +``` +$ source activate de-d +``` diff --git a/de/d/de-d-linux-py37.00.yml b/de/d/de-d-linux-py37.00.yml new file mode 100644 index 0000000..eaad8ae --- /dev/null +++ b/de/d/de-d-linux-py37.00.yml @@ -0,0 +1,174 @@ +# delivery_name: de-d-linux-py37.00 +# creation_time: Mon Mar 29 10:06:51 EDT 2021 +# conda_version: 4.8.5 +channels: + - https://ssb.stsci.edu/astroconda + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - ca-certificates=2021.1.19=h06a4308_1 + - certifi=2020.12.5=py37h06a4308_0 + - dbus=1.13.18=hb2f20db_0 + - expat=2.3.0=h2531618_2 + - fontconfig=2.13.1=h6c09931_0 + - freetype=2.10.4=h5ab3b9f_0 + - glib=2.68.0=h36276a3_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - icu=58.2=he6710b0_3 + - jdat_notebooks=0.3.2=0 + - jpeg=9b=h024ee3a_2 + - ld_impl_linux-64=2.33.1=h53a641e_7 + - libffi=3.3=he6710b0_2 + - libgcc-ng=9.1.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=9.1.0=hdf63c60_0 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.14=h7b6447c_0 + - libxml2=2.9.10=hb55368b_3 + - ncurses=6.2=he6710b0_1 + - openssl=1.1.1k=h27cfd23_0 + - pcre=8.44=he6710b0_0 + - pip=21.0.1=py37h06a4308_0 + - python=3.7.10=hdb3f193_0 + - qt=5.9.7=h5867ecd_1 + - readline=8.1=h27cfd23_0 + - setuptools=52.0.0=py37h06a4308_0 + - sqlite=3.35.2=hdfb4753_0 + - tk=8.6.10=hbc83047_0 + - wheel=0.36.2=pyhd3eb1b0_0 + - xz=5.2.5=h7b6447c_0 + - zlib=1.2.11=h7b6447c_3 + - pip: + - anyio==2.2.0 + - argon2-cffi==20.1.0 + - asdf==2.7.3 + - asteval==0.9.23 + - astroimtools==0.3 + - astropy==4.2 + - async-generator==1.10 + - attrs==20.3.0 + - backcall==0.2.0 + - bleach==3.3.0 + - bottleneck==1.3.2 + - bqplot==0.12.23 + - bqplot-image-gl==1.2.0 + - cached-property==1.5.2 + - cffi==1.14.5 + - chardet==4.0.0 + - click==7.1.2 + - cloudpickle==1.6.0 + - cycler==0.10.0 + - dask==2021.3.1 + - decorator==4.4.2 + - defusedxml==0.7.1 + - dill==0.3.3 + - echo==0.5 + - entrypoints==0.3 + - fast-histogram==0.9 + - freetype-py==2.2.0 + - fsspec==0.8.7 + - ginga==3.1.0 + - glue-astronomy==0.1 + - glue-core==1.0.1 + - glue-jupyter==0.2.2 + - glue-vispy-viewers==1.0.2 + - gwcs==0.16.1 + - h5py==3.2.1 + - idna==2.10 + - imageio==2.9.0 + - imexam==0.9.1 + - importlib-metadata==3.9.1 + - ipydatawidgets==4.2.0 + - ipygoldenlayout==0.3.0 + - ipykernel==5.5.0 + - ipympl==0.7.0 + - ipysplitpanes==0.1.0 + - ipython==7.22.0 + - ipython-genutils==0.2.0 + - ipyvolume==0.5.2 + - ipyvue==1.5.0 + - ipyvuetify==1.6.2 + - ipywebrtc==0.6.0 + - ipywidgets==7.6.3 + - jdaviz==1.1 + - jedi==0.18.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - jsonschema==3.2.0 + - jupyter-client==6.1.12 + - jupyter-core==4.7.1 + - jupyter-server==1.5.1 + - jupyterlab-pygments==0.1.2 + - jupyterlab-widgets==1.0.0 + - kiwisolver==1.3.1 + - locket==0.2.1 + - markupsafe==1.1.1 + - matplotlib==3.4.0 + - mistune==0.8.4 + - mpl-scatter-density==0.7 + - nbclient==0.5.3 + - nbconvert==6.0.7 + - nbformat==5.1.2 + - nest-asyncio==1.5.1 + - networkx==2.5 + - notebook==6.3.0 + - numpy==1.20.2 + - packaging==20.9 + - pandas==1.2.3 + - pandocfilters==1.4.3 + - parso==0.8.1 + - partd==1.1.0 + - pexpect==4.8.0 + - photutils==1.1.0 + - pickleshare==0.7.5 + - pillow==8.1.2 + - prometheus-client==0.9.0 + - prompt-toolkit==3.0.18 + - ptyprocess==0.7.0 + - pycparser==2.20 + - pyerfa==1.7.2 + - pygments==2.8.1 + - pyopengl==3.1.5 + - pyparsing==2.4.7 + - pyrsistent==0.17.3 + - python-dateutil==2.8.1 + - pythreejs==2.3.0 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - pyzmq==22.0.3 + - qtconsole==5.0.3 + - qtpy==1.9.0 + - radio-beam==0.3.3 + - regions==0.4 + - requests==2.25.1 + - scikit-image==0.18.1 + - scipy==1.6.2 + - semantic-version==2.8.5 + - send2trash==1.5.0 + - six==1.15.0 + - sniffio==1.2.0 + - spectral-cube==0.5.0 + - specutils==1.2 + - spherical-geometry==1.2.19 + - stginga==1.2.0 + - stsci-imagestats==1.6.2 + - stsci-stimage==0.2.4 + - terminado==0.9.3 + - testpath==0.4.4 + - tifffile==2021.3.17 + - toolz==0.11.1 + - tornado==6.1 + - traitlets==5.0.5 + - traittypes==0.2.1 + - tweakwcs==0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - vispy==0.6.6 + - voila==0.2.7 + - wcwidth==0.2.5 + - webencodings==0.5.1 + - widgetsnbextension==3.5.1 + - xlrd==2.0.1 + - zipp==3.4.1
\ No newline at end of file diff --git a/de/d/de-d-macosx-py37.00.yml b/de/d/de-d-macosx-py37.00.yml new file mode 100644 index 0000000..d485ec4 --- /dev/null +++ b/de/d/de-d-macosx-py37.00.yml @@ -0,0 +1,161 @@ +# delivery_name: de-d-macosx-py37.00 +# creation_time: Mon Mar 29 10:13:14 EDT 2021 +# conda_version: 4.8.5 +channels: + - https://ssb.stsci.edu/astroconda + - defaults +dependencies: + - ca-certificates=2021.1.19=hecd8cb5_1 + - certifi=2020.12.5=py37hecd8cb5_0 + - icu=58.2=h0a44026_3 + - jdat_notebooks=0.3.2=0 + - jpeg=9b=he5867d9_2 + - libcxx=10.0.0=1 + - libffi=3.3=hb1e8313_2 + - libpng=1.6.37=ha441bb4_0 + - ncurses=6.2=h0a44026_1 + - openssl=1.1.1k=h9ed2024_0 + - pip=21.0.1=py37hecd8cb5_0 + - python=3.7.10=h88f2d9e_0 + - qt=5.9.7=h468cd18_1 + - readline=8.1=h9ed2024_0 + - setuptools=52.0.0=py37hecd8cb5_0 + - sqlite=3.35.2=hce871da_0 + - tk=8.6.10=hb0a8c7a_0 + - wheel=0.36.2=pyhd3eb1b0_0 + - xz=5.2.5=h1de35cc_0 + - zlib=1.2.11=h1de35cc_3 + - pip: + - anyio==2.2.0 + - appnope==0.1.2 + - argon2-cffi==20.1.0 + - asdf==2.7.3 + - asteval==0.9.23 + - astroimtools==0.3 + - astropy==4.2 + - async-generator==1.10 + - attrs==20.3.0 + - backcall==0.2.0 + - bleach==3.3.0 + - bottleneck==1.3.2 + - bqplot==0.12.23 + - bqplot-image-gl==1.2.0 + - cached-property==1.5.2 + - cffi==1.14.5 + - chardet==4.0.0 + - click==7.1.2 + - cloudpickle==1.6.0 + - cycler==0.10.0 + - dask==2021.3.1 + - decorator==4.4.2 + - defusedxml==0.7.1 + - dill==0.3.3 + - echo==0.5 + - entrypoints==0.3 + - fast-histogram==0.9 + - freetype-py==2.2.0 + - fsspec==0.8.7 + - ginga==3.1.0 + - glue-astronomy==0.1 + - glue-core==1.0.1 + - glue-jupyter==0.2.2 + - glue-vispy-viewers==1.0.2 + - gwcs==0.16.1 + - h5py==3.2.1 + - idna==2.10 + - imageio==2.9.0 + - imexam==0.9.1 + - importlib-metadata==3.9.1 + - ipydatawidgets==4.2.0 + - ipygoldenlayout==0.3.0 + - ipykernel==5.5.0 + - ipympl==0.7.0 + - ipysplitpanes==0.1.0 + - ipython==7.22.0 + - ipython-genutils==0.2.0 + - ipyvolume==0.5.2 + - ipyvue==1.5.0 + - ipyvuetify==1.6.2 + - ipywebrtc==0.6.0 + - ipywidgets==7.6.3 + - jdaviz==1.1 + - jedi==0.18.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - jsonschema==3.2.0 + - jupyter-client==6.1.12 + - jupyter-core==4.7.1 + - jupyter-server==1.5.1 + - jupyterlab-pygments==0.1.2 + - jupyterlab-widgets==1.0.0 + - kiwisolver==1.3.1 + - locket==0.2.1 + - markupsafe==1.1.1 + - matplotlib==3.4.0 + - mistune==0.8.4 + - mpl-scatter-density==0.7 + - nbclient==0.5.3 + - nbconvert==6.0.7 + - nbformat==5.1.2 + - nest-asyncio==1.5.1 + - networkx==2.5 + - notebook==6.3.0 + - numpy==1.20.2 + - packaging==20.9 + - pandas==1.2.3 + - pandocfilters==1.4.3 + - parso==0.8.1 + - partd==1.1.0 + - pexpect==4.8.0 + - photutils==1.1.0 + - pickleshare==0.7.5 + - pillow==8.1.2 + - prometheus-client==0.9.0 + - prompt-toolkit==3.0.18 + - ptyprocess==0.7.0 + - pycparser==2.20 + - pyerfa==1.7.2 + - pygments==2.8.1 + - pyopengl==3.1.5 + - pyparsing==2.4.7 + - pyrsistent==0.17.3 + - python-dateutil==2.8.1 + - pythreejs==2.3.0 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - pyzmq==22.0.3 + - qtconsole==5.0.3 + - qtpy==1.9.0 + - radio-beam==0.3.3 + - regions==0.4 + - requests==2.25.1 + - scikit-image==0.18.1 + - scipy==1.6.2 + - semantic-version==2.8.5 + - send2trash==1.5.0 + - six==1.15.0 + - sniffio==1.2.0 + - spectral-cube==0.5.0 + - specutils==1.2 + - spherical-geometry==1.2.19 + - stginga==1.2.0 + - stsci-imagestats==1.6.2 + - stsci-stimage==0.2.4 + - terminado==0.9.3 + - testpath==0.4.4 + - tifffile==2021.3.17 + - toolz==0.11.1 + - tornado==6.1 + - traitlets==5.0.5 + - traittypes==0.2.1 + - tweakwcs==0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - vispy==0.6.6 + - voila==0.2.7 + - wcwidth==0.2.5 + - webencodings==0.5.1 + - widgetsnbextension==3.5.1 + - xlrd==2.0.1 + - zipp==3.4.1
\ No newline at end of file diff --git a/de/d/latest-linux.yml b/de/d/latest-linux.yml new file mode 100644 index 0000000..eaad8ae --- /dev/null +++ b/de/d/latest-linux.yml @@ -0,0 +1,174 @@ +# delivery_name: de-d-linux-py37.00 +# creation_time: Mon Mar 29 10:06:51 EDT 2021 +# conda_version: 4.8.5 +channels: + - https://ssb.stsci.edu/astroconda + - defaults +dependencies: + - _libgcc_mutex=0.1=main + - ca-certificates=2021.1.19=h06a4308_1 + - certifi=2020.12.5=py37h06a4308_0 + - dbus=1.13.18=hb2f20db_0 + - expat=2.3.0=h2531618_2 + - fontconfig=2.13.1=h6c09931_0 + - freetype=2.10.4=h5ab3b9f_0 + - glib=2.68.0=h36276a3_0 + - gst-plugins-base=1.14.0=h8213a91_2 + - gstreamer=1.14.0=h28cd5cc_2 + - icu=58.2=he6710b0_3 + - jdat_notebooks=0.3.2=0 + - jpeg=9b=h024ee3a_2 + - ld_impl_linux-64=2.33.1=h53a641e_7 + - libffi=3.3=he6710b0_2 + - libgcc-ng=9.1.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=9.1.0=hdf63c60_0 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.14=h7b6447c_0 + - libxml2=2.9.10=hb55368b_3 + - ncurses=6.2=he6710b0_1 + - openssl=1.1.1k=h27cfd23_0 + - pcre=8.44=he6710b0_0 + - pip=21.0.1=py37h06a4308_0 + - python=3.7.10=hdb3f193_0 + - qt=5.9.7=h5867ecd_1 + - readline=8.1=h27cfd23_0 + - setuptools=52.0.0=py37h06a4308_0 + - sqlite=3.35.2=hdfb4753_0 + - tk=8.6.10=hbc83047_0 + - wheel=0.36.2=pyhd3eb1b0_0 + - xz=5.2.5=h7b6447c_0 + - zlib=1.2.11=h7b6447c_3 + - pip: + - anyio==2.2.0 + - argon2-cffi==20.1.0 + - asdf==2.7.3 + - asteval==0.9.23 + - astroimtools==0.3 + - astropy==4.2 + - async-generator==1.10 + - attrs==20.3.0 + - backcall==0.2.0 + - bleach==3.3.0 + - bottleneck==1.3.2 + - bqplot==0.12.23 + - bqplot-image-gl==1.2.0 + - cached-property==1.5.2 + - cffi==1.14.5 + - chardet==4.0.0 + - click==7.1.2 + - cloudpickle==1.6.0 + - cycler==0.10.0 + - dask==2021.3.1 + - decorator==4.4.2 + - defusedxml==0.7.1 + - dill==0.3.3 + - echo==0.5 + - entrypoints==0.3 + - fast-histogram==0.9 + - freetype-py==2.2.0 + - fsspec==0.8.7 + - ginga==3.1.0 + - glue-astronomy==0.1 + - glue-core==1.0.1 + - glue-jupyter==0.2.2 + - glue-vispy-viewers==1.0.2 + - gwcs==0.16.1 + - h5py==3.2.1 + - idna==2.10 + - imageio==2.9.0 + - imexam==0.9.1 + - importlib-metadata==3.9.1 + - ipydatawidgets==4.2.0 + - ipygoldenlayout==0.3.0 + - ipykernel==5.5.0 + - ipympl==0.7.0 + - ipysplitpanes==0.1.0 + - ipython==7.22.0 + - ipython-genutils==0.2.0 + - ipyvolume==0.5.2 + - ipyvue==1.5.0 + - ipyvuetify==1.6.2 + - ipywebrtc==0.6.0 + - ipywidgets==7.6.3 + - jdaviz==1.1 + - jedi==0.18.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - jsonschema==3.2.0 + - jupyter-client==6.1.12 + - jupyter-core==4.7.1 + - jupyter-server==1.5.1 + - jupyterlab-pygments==0.1.2 + - jupyterlab-widgets==1.0.0 + - kiwisolver==1.3.1 + - locket==0.2.1 + - markupsafe==1.1.1 + - matplotlib==3.4.0 + - mistune==0.8.4 + - mpl-scatter-density==0.7 + - nbclient==0.5.3 + - nbconvert==6.0.7 + - nbformat==5.1.2 + - nest-asyncio==1.5.1 + - networkx==2.5 + - notebook==6.3.0 + - numpy==1.20.2 + - packaging==20.9 + - pandas==1.2.3 + - pandocfilters==1.4.3 + - parso==0.8.1 + - partd==1.1.0 + - pexpect==4.8.0 + - photutils==1.1.0 + - pickleshare==0.7.5 + - pillow==8.1.2 + - prometheus-client==0.9.0 + - prompt-toolkit==3.0.18 + - ptyprocess==0.7.0 + - pycparser==2.20 + - pyerfa==1.7.2 + - pygments==2.8.1 + - pyopengl==3.1.5 + - pyparsing==2.4.7 + - pyrsistent==0.17.3 + - python-dateutil==2.8.1 + - pythreejs==2.3.0 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - pyzmq==22.0.3 + - qtconsole==5.0.3 + - qtpy==1.9.0 + - radio-beam==0.3.3 + - regions==0.4 + - requests==2.25.1 + - scikit-image==0.18.1 + - scipy==1.6.2 + - semantic-version==2.8.5 + - send2trash==1.5.0 + - six==1.15.0 + - sniffio==1.2.0 + - spectral-cube==0.5.0 + - specutils==1.2 + - spherical-geometry==1.2.19 + - stginga==1.2.0 + - stsci-imagestats==1.6.2 + - stsci-stimage==0.2.4 + - terminado==0.9.3 + - testpath==0.4.4 + - tifffile==2021.3.17 + - toolz==0.11.1 + - tornado==6.1 + - traitlets==5.0.5 + - traittypes==0.2.1 + - tweakwcs==0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - vispy==0.6.6 + - voila==0.2.7 + - wcwidth==0.2.5 + - webencodings==0.5.1 + - widgetsnbextension==3.5.1 + - xlrd==2.0.1 + - zipp==3.4.1
\ No newline at end of file diff --git a/de/d/latest-macosx.yml b/de/d/latest-macosx.yml new file mode 100644 index 0000000..d485ec4 --- /dev/null +++ b/de/d/latest-macosx.yml @@ -0,0 +1,161 @@ +# delivery_name: de-d-macosx-py37.00 +# creation_time: Mon Mar 29 10:13:14 EDT 2021 +# conda_version: 4.8.5 +channels: + - https://ssb.stsci.edu/astroconda + - defaults +dependencies: + - ca-certificates=2021.1.19=hecd8cb5_1 + - certifi=2020.12.5=py37hecd8cb5_0 + - icu=58.2=h0a44026_3 + - jdat_notebooks=0.3.2=0 + - jpeg=9b=he5867d9_2 + - libcxx=10.0.0=1 + - libffi=3.3=hb1e8313_2 + - libpng=1.6.37=ha441bb4_0 + - ncurses=6.2=h0a44026_1 + - openssl=1.1.1k=h9ed2024_0 + - pip=21.0.1=py37hecd8cb5_0 + - python=3.7.10=h88f2d9e_0 + - qt=5.9.7=h468cd18_1 + - readline=8.1=h9ed2024_0 + - setuptools=52.0.0=py37hecd8cb5_0 + - sqlite=3.35.2=hce871da_0 + - tk=8.6.10=hb0a8c7a_0 + - wheel=0.36.2=pyhd3eb1b0_0 + - xz=5.2.5=h1de35cc_0 + - zlib=1.2.11=h1de35cc_3 + - pip: + - anyio==2.2.0 + - appnope==0.1.2 + - argon2-cffi==20.1.0 + - asdf==2.7.3 + - asteval==0.9.23 + - astroimtools==0.3 + - astropy==4.2 + - async-generator==1.10 + - attrs==20.3.0 + - backcall==0.2.0 + - bleach==3.3.0 + - bottleneck==1.3.2 + - bqplot==0.12.23 + - bqplot-image-gl==1.2.0 + - cached-property==1.5.2 + - cffi==1.14.5 + - chardet==4.0.0 + - click==7.1.2 + - cloudpickle==1.6.0 + - cycler==0.10.0 + - dask==2021.3.1 + - decorator==4.4.2 + - defusedxml==0.7.1 + - dill==0.3.3 + - echo==0.5 + - entrypoints==0.3 + - fast-histogram==0.9 + - freetype-py==2.2.0 + - fsspec==0.8.7 + - ginga==3.1.0 + - glue-astronomy==0.1 + - glue-core==1.0.1 + - glue-jupyter==0.2.2 + - glue-vispy-viewers==1.0.2 + - gwcs==0.16.1 + - h5py==3.2.1 + - idna==2.10 + - imageio==2.9.0 + - imexam==0.9.1 + - importlib-metadata==3.9.1 + - ipydatawidgets==4.2.0 + - ipygoldenlayout==0.3.0 + - ipykernel==5.5.0 + - ipympl==0.7.0 + - ipysplitpanes==0.1.0 + - ipython==7.22.0 + - ipython-genutils==0.2.0 + - ipyvolume==0.5.2 + - ipyvue==1.5.0 + - ipyvuetify==1.6.2 + - ipywebrtc==0.6.0 + - ipywidgets==7.6.3 + - jdaviz==1.1 + - jedi==0.18.0 + - jinja2==2.11.3 + - joblib==1.0.1 + - jsonschema==3.2.0 + - jupyter-client==6.1.12 + - jupyter-core==4.7.1 + - jupyter-server==1.5.1 + - jupyterlab-pygments==0.1.2 + - jupyterlab-widgets==1.0.0 + - kiwisolver==1.3.1 + - locket==0.2.1 + - markupsafe==1.1.1 + - matplotlib==3.4.0 + - mistune==0.8.4 + - mpl-scatter-density==0.7 + - nbclient==0.5.3 + - nbconvert==6.0.7 + - nbformat==5.1.2 + - nest-asyncio==1.5.1 + - networkx==2.5 + - notebook==6.3.0 + - numpy==1.20.2 + - packaging==20.9 + - pandas==1.2.3 + - pandocfilters==1.4.3 + - parso==0.8.1 + - partd==1.1.0 + - pexpect==4.8.0 + - photutils==1.1.0 + - pickleshare==0.7.5 + - pillow==8.1.2 + - prometheus-client==0.9.0 + - prompt-toolkit==3.0.18 + - ptyprocess==0.7.0 + - pycparser==2.20 + - pyerfa==1.7.2 + - pygments==2.8.1 + - pyopengl==3.1.5 + - pyparsing==2.4.7 + - pyrsistent==0.17.3 + - python-dateutil==2.8.1 + - pythreejs==2.3.0 + - pytz==2021.1 + - pywavelets==1.1.1 + - pyyaml==5.4.1 + - pyzmq==22.0.3 + - qtconsole==5.0.3 + - qtpy==1.9.0 + - radio-beam==0.3.3 + - regions==0.4 + - requests==2.25.1 + - scikit-image==0.18.1 + - scipy==1.6.2 + - semantic-version==2.8.5 + - send2trash==1.5.0 + - six==1.15.0 + - sniffio==1.2.0 + - spectral-cube==0.5.0 + - specutils==1.2 + - spherical-geometry==1.2.19 + - stginga==1.2.0 + - stsci-imagestats==1.6.2 + - stsci-stimage==0.2.4 + - terminado==0.9.3 + - testpath==0.4.4 + - tifffile==2021.3.17 + - toolz==0.11.1 + - tornado==6.1 + - traitlets==5.0.5 + - traittypes==0.2.1 + - tweakwcs==0.7.1 + - typing-extensions==3.7.4.3 + - urllib3==1.26.4 + - vispy==0.6.6 + - voila==0.2.7 + - wcwidth==0.2.5 + - webencodings==0.5.1 + - widgetsnbextension==3.5.1 + - xlrd==2.0.1 + - zipp==3.4.1
\ No newline at end of file diff --git a/hstdp/2016.1/dev/hstdp-2016.1-linux-py27.0.txt b/hstdp/2016.1/dev/hstdp-2016.1-linux-py27.0.txt new file mode 100644 index 0000000..3666d8d --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-linux-py27.0.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.3.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.0.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-linux-py27.1.txt b/hstdp/2016.1/dev/hstdp-2016.1-linux-py27.1.txt new file mode 100644 index 0000000..e050585 --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-linux-py27.1.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.3.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-linux-py27.2.txt b/hstdp/2016.1/dev/hstdp-2016.1-linux-py27.2.txt new file mode 100644 index 0000000..42b2b9a --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-linux-py27.2.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-legacy/linux-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/babel-2.3.3-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cairo-1.12.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/crds-7.0.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/decorator-4.0.10-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/hstcal-1.0.1-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jbig-2.1-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jpeg-8d-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpy-1.11.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpydoc-0.5-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pillow-3.2.0-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pixman-0.32.6-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-2.7.12-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pytools-2016.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pytz-2016.4-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/qt-4.8.7-3.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/setuptools-23.0.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sip-4.16.9-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx-1.4.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/xz-5.2.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-linux-py35.0.txt b/hstdp/2016.1/dev/hstdp-2016.1-linux-py35.0.txt new file mode 100644 index 0000000..4fe034e --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-linux-py35.0.txt @@ -0,0 +1,85 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.0.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-linux-py35.1.txt b/hstdp/2016.1/dev/hstdp-2016.1-linux-py35.1.txt new file mode 100644 index 0000000..d762546 --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-linux-py35.1.txt @@ -0,0 +1,85 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-linux-py35.2.txt b/hstdp/2016.1/dev/hstdp-2016.1-linux-py35.2.txt new file mode 100644 index 0000000..837d317 --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-linux-py35.2.txt @@ -0,0 +1,85 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-legacy/linux-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/crds-7.0.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/decorator-4.0.10-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/hstcal-1.0.1-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jbig-2.1-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jpeg-8d-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpy-1.11.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpydoc-0.5-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pillow-3.2.0-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-3.5.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pytools-2016.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pytz-2016.4-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/qt-4.8.7-3.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/setuptools-23.0.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sip-4.16.9-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx-1.4.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/xz-5.2.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-osx-py27.0.txt b/hstdp/2016.1/dev/hstdp-2016.1-osx-py27.0.txt new file mode 100644 index 0000000..a75ccef --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-osx-py27.0.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.0.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-osx-py27.1.txt b/hstdp/2016.1/dev/hstdp-2016.1-osx-py27.1.txt new file mode 100644 index 0000000..b58c24f --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-osx-py27.1.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-osx-py27.2.txt b/hstdp/2016.1/dev/hstdp-2016.1-osx-py27.2.txt new file mode 100644 index 0000000..b58c24f --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-osx-py27.2.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-osx-py35.0.txt b/hstdp/2016.1/dev/hstdp-2016.1-osx-py35.0.txt new file mode 100644 index 0000000..152bfbf --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-osx-py35.0.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.0.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-osx-py35.1.txt b/hstdp/2016.1/dev/hstdp-2016.1-osx-py35.1.txt new file mode 100644 index 0000000..0c54ec8 --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-osx-py35.1.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/dev/hstdp-2016.1-osx-py35.2.txt b/hstdp/2016.1/dev/hstdp-2016.1-osx-py35.2.txt new file mode 100644 index 0000000..0c54ec8 --- /dev/null +++ b/hstdp/2016.1/dev/hstdp-2016.1-osx-py35.2.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.1/hstdp-2016.1-linux-py27.final.txt b/hstdp/2016.1/hstdp-2016.1-linux-py27.final.txt new file mode 100644 index 0000000..a3f9dfd --- /dev/null +++ b/hstdp/2016.1/hstdp-2016.1-linux-py27.final.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/alabaster-0.7.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/babel-2.3.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/calcos-3.1.8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/costools-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/cython-0.24-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/docutils-0.12-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/hstcal-1.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pyqt-4.11.4-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/pyregion-1.1.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stistools-1.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.skypac-0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2016.1/hstdp-2016.1-linux-py35.final.txt b/hstdp/2016.1/hstdp-2016.1-linux-py35.final.txt new file mode 100644 index 0000000..54a2bd7 --- /dev/null +++ b/hstdp/2016.1/hstdp-2016.1-linux-py35.final.txt @@ -0,0 +1,85 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/alabaster-0.7.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/babel-2.3.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/calcos-3.1.8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/costools-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/cython-0.24-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/decorator-4.0.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/docutils-0.12-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/hstcal-1.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pyqt-4.11.4-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/pyregion-1.1.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/sphinx-1.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stistools-1.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.skypac-0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2016.1/hstdp-2016.1-osx-py27.final.txt b/hstdp/2016.1/hstdp-2016.1-osx-py27.final.txt new file mode 100644 index 0000000..724efeb --- /dev/null +++ b/hstdp/2016.1/hstdp-2016.1-osx-py27.final.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/alabaster-0.7.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/babel-2.3.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/calcos-3.1.8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/costools-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/cython-0.24-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/docutils-0.12-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/hstcal-1.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pyqt-4.11.4-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/pyregion-1.1.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stistools-1.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.skypac-0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2016.1/hstdp-2016.1-osx-py35.final.txt b/hstdp/2016.1/hstdp-2016.1-osx-py35.final.txt new file mode 100644 index 0000000..cd321d2 --- /dev/null +++ b/hstdp/2016.1/hstdp-2016.1-osx-py35.final.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/alabaster-0.7.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/babel-2.3.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/calcos-3.1.8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/costools-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/cython-0.24-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/docutils-0.12-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/hstcal-1.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pyqt-4.11.4-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/pyregion-1.1.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/sphinx-1.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stistools-1.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.skypac-0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/astroconda/osx-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.1/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2016.1/release_notes.md b/hstdp/2016.1/release_notes.md new file mode 100644 index 0000000..33c4506 --- /dev/null +++ b/hstdp/2016.1/release_notes.md @@ -0,0 +1,103 @@ +This 2016.1 release is based on Anaconda/Miniconda, Python 3.5 + +## HSTCAL 1.0.1 + +This release is to accommodate CALACS processing for new ACS subarrays added by FSW change done in May 2016. Particularly, BLEVCORR is modified to trim virtual overscans off the new subarrays (old subarrays do not have virtual overscans). No changes are made for CALWF3 and CALSTIS. + +## CRDS 7.0.1 + +Includes ACS BIASFILE substitution and certify changes. Critical changes to jwst cal-code repacking. + +## CALCOS 3.1.3 (erroneously labeled 3.1.8 in this release) + +Calcos 3.1 includes the following bug fixes and features: + +### Allow flux extraction from 0 to 100% + +The latest version of calcos (3.0) throws an IndexError when the range of the 2zxtab is 0 to 100%. Handle this case separately, always integrating over the whole height of the extraction box to duplicate the behavior of the boxcar +option. + +### Ignore DQ flag DQ_GAIN_SAG_HOLE in background regions in profile alignment step + +CALCOS uses DQ flags in the profile alignment step, omitting columns that have a pixel DQ value that contains any value in SDQFLAGS (read from science data header). The flagging of large areas with gain sag holes after the move to LP3 has made it very difficult to find background regions that won't cause whole columns be omitted from the alignment step, possibly resulting in not enough good columns to do the alignment correction. + +To alleviate this, pixels in the background region should be able to test against a different DQ value (e.g. one without the DQ_GAIN_SAG_HOLE value) from pixels in the target region. + +### Shift DQ data array the same as data array in TRCECORR and ALGNCORR steps of calcos + +The data arrays are shifted in the Y direction in the TRCECORR and ALGNCORR steps of calcos, but the DQ arrays are not currently shifted. The DQ arrays should be shifted in the same way that the data arrays are in the ALGNCORR and TRCECORR steps. + +### Fix up x1d output for boxcar option + +There are a number of shortcomings in the x1d output of calcos if the XTRCTALG keyword is set to 'BOXCAR'. + + 1. The BACKGROUND_PER_ROW column is calculated incorrectly (total background is divided by the wrong number of rows) and should be renamed to "BACKGROUND PER PIXEL" + + 2. The NUM_EXTRACT_ROWS column is calculated incorrectly (off by 1). + + 3. The Y_LOWER_OUTER, Y_LOWER_INNER, Y_UPPER_INNER and Y_UPPER_OUTER columns are calculated incorrectly - they are constants whereas they should follow the linear relation using the SLOPE and INTERCEPT from the reference file. + +### Restore display format for x1d columns + +In the 3.0 update to CALCOS, the display formats for the columns in the .x1d output table were removed. They should be restored. + +### CalCOS should print warnings for certain conditions of HOTSPOT calibration + +The new code to support hot spot flagging with the associated reference file will need to output warnings to the user in a couple select cases. + + 1. If a DQ bit in SDQOUTER is not also in SDQFLAGS, a warning should be printed. + + 2. If the PHAMIN/PHAMAX header keywords of the applied SPOTTAB are more inclusive that what is applied to the data itself, a warning should be printed. + +### Change DQ array handling in x1d with hotspot treatment + +With the CalCOS change to handle the hot spots and the SPOTTAB reference file, the DQ array in the output x1d files will change slightly. + + 1. The data quality value for each pixel should be given by: (DQ_INNER) | (DQ_OUTER & SDQOUTER) + + An additional check should be done to verify that the DQ_WGT in the x1dsum is still calculated correctly after this modification. + +### Events in COS data should now be flagged using the SPOTTAB + +To handle the hot spots in COS data, a new reference file is being delivered (SPOTTAB) that will specify physical regions on the detector that should be flagged if they occur during any given dataset. CalCOS needs to flag each region given in a SPOTTAB if the time of the event (given by START, STOP in each row) overlaps with any good-time-interval (GTI) in the observation. + +Modules changed: + +#### Setup.cfg: + +Version changed. + +##### lib/calcos/timetag.py + +Added code to shift the DQ arrays by the amount of the trace correction and alignment correction before doppler blurring. Added code to pass the good time intervals to modules that need it to check for active hotspots. Added +code to make sure that events that get shifted into the active area after their doppler correction is applied don't cause the minimum and maximum X shifts to be drastically wrong. + +##### lib/calcos/cosutil.py + +Added code to check SPOTTAB keywords, and to add active hotspots to the DQ flags for events and the DQ arrays. Added code to shift the DQ values of events by the amount in the trace and alignment corrections. + +##### lib/calcos/calcos.py + +Added code to enable use of SPOTTAB reference file + +##### lib/calcos/concurrent.py + +Updated interface to cosutil.updateDQArray + +##### lib/calcos/extract.py + +Renamed BACKGROUND_PER_ROW table column to BACKGROUND_PER_PIXEL. Restored display formet to table columns. Treat DQ flags in the outer regions if affected by a hotspot by setting DQ_WGT to 0. DQ_ALL column is now the OR of the DQ flags of all pixels in the extraction region. Fixed an indexing bug in how the extraction regions were specified. + +##### lib/calcos/getinfo.py + +Added SPOTTAB capability. + +##### lib/calcos/trace.py + +Added code to make sure that gain sag holes don't affect the background DQ values. + +##### lib/calcos/x1d.py + +Added code to pass brftab reference file to timetag.getWavecalOffsets so that the Active Area can be determined at the time the offsets are calculated. + + diff --git a/hstdp/2016.2/dev/hstdp-2016.2-linux-py27.0.txt b/hstdp/2016.2/dev/hstdp-2016.2-linux-py27.0.txt new file mode 100644 index 0000000..16d7b33 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-linux-py27.0.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-legacy/linux-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/babel-2.3.3-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cairo-1.12.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/crds-7.0.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/decorator-4.0.10-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy-dev/linux-64/hstcal-1.0.1.dev20-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jbig-2.1-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jpeg-8d-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpy-1.11.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpydoc-0.5-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pillow-3.2.0-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pixman-0.32.6-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-2.7.12-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pytools-2016.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pytz-2016.4-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/qt-4.8.7-3.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/setuptools-23.0.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sip-4.16.9-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx-1.4.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/xz-5.2.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-linux-py27.1.txt b/hstdp/2016.2/dev/hstdp-2016.2-linux-py27.1.txt new file mode 100644 index 0000000..bc4a922 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-linux-py27.1.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-legacy/linux-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/babel-2.3.3-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cairo-1.12.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/crds-7.0.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/decorator-4.0.10-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy-dev/linux-64/hstcal-1.1.1rc1.dev0-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jbig-2.1-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jpeg-8d-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpy-1.11.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpydoc-0.5-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pillow-3.2.0-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pixman-0.32.6-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-2.7.12-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pytools-2016.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pytz-2016.4-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/qt-4.8.7-3.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/setuptools-23.0.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sip-4.16.9-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx-1.4.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/xz-5.2.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-linux-py27.2.txt b/hstdp/2016.2/dev/hstdp-2016.2-linux-py27.2.txt new file mode 100644 index 0000000..f63f718 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-linux-py27.2.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-legacy/linux-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/babel-2.3.3-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cairo-1.12.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/crds-7.0.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/decorator-4.0.10-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/hstcal-1.1.1-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jbig-2.1-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jpeg-8d-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpy-1.11.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpydoc-0.5-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pillow-3.2.0-py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pixman-0.32.6-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-2.7.12-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pytools-2016.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pytz-2016.4-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/qt-4.8.7-3.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/setuptools-23.0.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sip-4.16.9-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx-1.4.1-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/xz-5.2.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-linux-py35.0.txt b/hstdp/2016.2/dev/hstdp-2016.2-linux-py35.0.txt new file mode 100644 index 0000000..8e47462 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-linux-py35.0.txt @@ -0,0 +1,85 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-legacy/linux-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/crds-7.0.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/decorator-4.0.10-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy-dev/linux-64/hstcal-1.0.1.dev20-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jbig-2.1-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jpeg-8d-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpy-1.11.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpydoc-0.5-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pillow-3.2.0-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-3.5.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pytools-2016.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pytz-2016.4-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/qt-4.8.7-3.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/setuptools-23.0.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sip-4.16.9-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx-1.4.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/xz-5.2.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-linux-py35.1.txt b/hstdp/2016.2/dev/hstdp-2016.2-linux-py35.1.txt new file mode 100644 index 0000000..7fe5775 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-linux-py35.1.txt @@ -0,0 +1,85 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-legacy/linux-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/crds-7.0.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/decorator-4.0.10-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy-dev/linux-64/hstcal-1.1.1rc1.dev0-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jbig-2.1-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jpeg-8d-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpy-1.11.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpydoc-0.5-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pillow-3.2.0-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-3.5.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pytools-2016.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pytz-2016.4-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/qt-4.8.7-3.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/setuptools-23.0.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sip-4.16.9-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx-1.4.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/xz-5.2.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-linux-py35.2.txt b/hstdp/2016.2/dev/hstdp-2016.2-linux-py35.2.txt new file mode 100644 index 0000000..46004f3 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-linux-py35.2.txt @@ -0,0 +1,85 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-legacy/linux-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/crds-7.0.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/decorator-4.0.10-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/hstcal-1.1.1-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jbig-2.1-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/jpeg-8d-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpy-1.11.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/numpydoc-0.5-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pillow-3.2.0-py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-3.5.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/pytools-2016.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/pytz-2016.4-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/qt-4.8.7-3.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/setuptools-23.0.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sip-4.16.9-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx-1.4.1-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/xz-5.2.2-0.tar.bz2 +https://repo.continuum.io/pkgs/free/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-osx-py27.0.txt b/hstdp/2016.2/dev/hstdp-2016.2-osx-py27.0.txt new file mode 100644 index 0000000..649de88 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-osx-py27.0.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy-dev/osx-64/hstcal-1.0.1.dev20-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-osx-py27.1.txt b/hstdp/2016.2/dev/hstdp-2016.2-osx-py27.1.txt new file mode 100644 index 0000000..c34e0e2 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-osx-py27.1.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.1.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-osx-py27.2.txt b/hstdp/2016.2/dev/hstdp-2016.2-osx-py27.2.txt new file mode 100644 index 0000000..c34e0e2 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-osx-py27.2.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.1.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py27_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-osx-py35.0.txt b/hstdp/2016.2/dev/hstdp-2016.2-osx-py35.0.txt new file mode 100644 index 0000000..ce7dcd0 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-osx-py35.0.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-legacy-dev/osx-64/hstcal-1.0.1.dev20-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-osx-py35.1.txt b/hstdp/2016.2/dev/hstdp-2016.2-osx-py35.1.txt new file mode 100644 index 0000000..937a0a8 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-osx-py35.1.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.1.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/dev/hstdp-2016.2-osx-py35.2.txt b/hstdp/2016.2/dev/hstdp-2016.2-osx-py35.2.txt new file mode 100644 index 0000000..937a0a8 --- /dev/null +++ b/hstdp/2016.2/dev/hstdp-2016.2-osx-py35.2.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.3.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.1.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.12-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.1.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-4.11.4-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.4.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2016.2/hstdp-2016.2-linux-py27.final.txt b/hstdp/2016.2/hstdp-2016.2-linux-py27.final.txt new file mode 100644 index 0000000..a496cd7 --- /dev/null +++ b/hstdp/2016.2/hstdp-2016.2-linux-py27.final.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/alabaster-0.7.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/babel-2.3.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/calcos-3.1.8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/costools-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/cython-0.24-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/docutils-0.12-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/hstcal-1.1.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pyqt-4.11.4-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/pyregion-1.1.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stistools-1.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.skypac-0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2016.2/hstdp-2016.2-linux-py35.final.txt b/hstdp/2016.2/hstdp-2016.2-linux-py35.final.txt new file mode 100644 index 0000000..f52fd12 --- /dev/null +++ b/hstdp/2016.2/hstdp-2016.2-linux-py35.final.txt @@ -0,0 +1,85 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/alabaster-0.7.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/babel-2.3.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/calcos-3.1.8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/costools-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/cython-0.24-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/decorator-4.0.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/docutils-0.12-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/hstcal-1.1.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pyqt-4.11.4-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/pyregion-1.1.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/sphinx-1.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stistools-1.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.skypac-0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda-legacy/linux-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2016.2/hstdp-2016.2-osx-py27.final.txt b/hstdp/2016.2/hstdp-2016.2-osx-py27.final.txt new file mode 100644 index 0000000..61e5d03 --- /dev/null +++ b/hstdp/2016.2/hstdp-2016.2-osx-py27.final.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/acstools-2.0.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/alabaster-0.7.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/astrolib.coords-0.39.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/astropy-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/babel-2.3.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/calcos-3.1.8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/costools-1.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/crds-7.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/cython-0.24-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/decorator-4.0.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/docutils-0.12-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/drizzlepac-2.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/fitsblender-0.2.6-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/hstcal-1.1.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/matplotlib-1.5.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/nictools-1.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/numpydoc-0.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pillow-3.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pyqt-4.11.4-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/pyregion-1.1.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/pysynphot-0.9.8.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/pytools-2016.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pytz-2016.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/reftools-1.7.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/scipy-0.17.1-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/setuptools-23.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/sip-4.16.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/sphinx-1.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/sphinx_rtd_theme-0.1.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stistools-1.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci-hst-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.convolve-2.1.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.distutils-0.3.8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.image-2.2.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.imagemanip-1.1.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.imagestats-1.4.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.ndimage-0.10.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.numdisplay-1.6.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.skypac-0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.sphere-0.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.stimage-0.2.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.tools-3.4.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stwcs-1.2.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/wfc3tools-1.3.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/wfpc2tools-1.0.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2016.2/hstdp-2016.2-osx-py35.final.txt b/hstdp/2016.2/hstdp-2016.2-osx-py35.final.txt new file mode 100644 index 0000000..ea27804 --- /dev/null +++ b/hstdp/2016.2/hstdp-2016.2-osx-py35.final.txt @@ -0,0 +1,83 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/acstools-2.0.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/alabaster-0.7.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/astrolib.coords-0.39.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/astropy-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/babel-2.3.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/calcos-3.1.8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/costools-1.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/crds-7.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/cython-0.24-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/docutils-0.12-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/drizzlepac-2.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/fitsblender-0.2.6-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/hstcal-1.1.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/jpeg-8d-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/matplotlib-1.5.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/nictools-1.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/numpydoc-0.5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/openssl-1.0.2h-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pillow-3.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pyqt-4.11.4-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/pyregion-1.1.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/pysynphot-0.9.8.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/pytools-2016.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/pytz-2016.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/qt-4.8.7-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/reftools-1.7.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/scipy-0.17.1-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/setuptools-23.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/sip-4.16.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/sphinx-1.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/sphinx_rtd_theme-0.1.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stistools-1.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci-hst-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.convolve-2.1.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.distutils-0.3.8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.image-2.2.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.imagemanip-1.1.2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.imagestats-1.4.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.ndimage-0.10.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.numdisplay-1.6.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.skypac-0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.sphere-0.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.stimage-0.2.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stsci.tools-3.4.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/stwcs-1.2.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/wfc3tools-1.3.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/astroconda/osx-64/wfpc2tools-1.0.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2016.2/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2016.2/release_notes.md b/hstdp/2016.2/release_notes.md new file mode 100644 index 0000000..4a8e9ea --- /dev/null +++ b/hstdp/2016.2/release_notes.md @@ -0,0 +1,45 @@ +This 2016.2 release is based on Anaconda/Miniconda, Python 3.5 + + +HSTCAL 1.1.0 Release Notes +========================== +The following changes were made to the HST calibration software sent to HST Data Processing for build 2016.2: + +General +------- +- waf upgraded to 1.9.4, which enables building HSTCAL in Python 3, as well as Python 2. + +Packages +-------- +- WFC3 (increases to version 3.4) + - CTE subarrays are now enabled for subarrays which include physical overscan pixels. + - Sink Pixel flagging for all subarray images has been enabled. + + +Install the pipeline +==================== +``` + $ conda create -n hstdp-2016.2 --file http://ssb.stsci.edu/conda/hstdp-2016.2/hstdp-2016.2-linux-py35.0.txt +``` +Enter a BASH shell +``` + $ bash +``` +Activate the pipeline environment +``` + $ source activate hstdp-2016.2 +``` + +INSTALLING to an existing Anaconda/Miniconda +-------------------------------------------- +``` +$ conda create -n hstdp-2016.2 --file http://ssb.stsci.edu/conda/hstdp-2016.2/hstdp-2016.2-linux-py35.0.txt +``` + +UPGRADING an existing pipeline environment +------------------------------------------ +Use this method to apply an iterative spec file release to an existing pipeline environment. +``` +$ conda update -n <original_env> --file http://ssb.stsci.edu/conda/hstdp-2016.2/hstdp-2016.2-linux-py35.XXX.txt +``` + diff --git a/hstdp/2017.1/software_updates.md b/hstdp/2017.1/software_updates.md new file mode 100644 index 0000000..e507ab0 --- /dev/null +++ b/hstdp/2017.1/software_updates.md @@ -0,0 +1 @@ +HSTDP delivery 2017.1 contained no updates to calibration software, this was an internal update from RHEL5 to RHEL 7 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-linux-py27.0.txt b/hstdp/2017.2/dev/hstdp-2017.2-linux-py27.0.txt new file mode 100644 index 0000000..0ce548a --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-linux-py27.0.txt @@ -0,0 +1,128 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astrolib.coords-0.39.6.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6398-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.14.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.9.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-linux-py27.1.txt b/hstdp/2017.2/dev/hstdp-2017.2-linux-py27.1.txt new file mode 100644 index 0000000..86d6aaf --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-linux-py27.1.txt @@ -0,0 +1,128 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astrolib.coords-0.39.6.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6398-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.15.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.10.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-linux-py27.2.txt b/hstdp/2017.2/dev/hstdp-2017.2-linux-py27.2.txt new file mode 100644 index 0000000..4bb4612 --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-linux-py27.2.txt @@ -0,0 +1,127 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6400-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-linux-py35.0.txt b/hstdp/2017.2/dev/hstdp-2017.2-linux-py35.0.txt new file mode 100644 index 0000000..95d4938 --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-linux-py35.0.txt @@ -0,0 +1,118 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astrolib.coords-0.39.6.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6398-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.14.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.9.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-linux-py35.1.txt b/hstdp/2017.2/dev/hstdp-2017.2-linux-py35.1.txt new file mode 100644 index 0000000..9caada6 --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-linux-py35.1.txt @@ -0,0 +1,118 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astrolib.coords-0.39.6.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6398-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.15.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.10.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-linux-py35.2.txt b/hstdp/2017.2/dev/hstdp-2017.2-linux-py35.2.txt new file mode 100644 index 0000000..006c715 --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-linux-py35.2.txt @@ -0,0 +1,117 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6400-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-osx-py27.0.txt b/hstdp/2017.2/dev/hstdp-2017.2-osx-py27.0.txt new file mode 100644 index 0000000..0132713 --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-osx-py27.0.txt @@ -0,0 +1,116 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6398-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.14.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.9.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-osx-py27.1.txt b/hstdp/2017.2/dev/hstdp-2017.2-osx-py27.1.txt new file mode 100644 index 0000000..c31be26 --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-osx-py27.1.txt @@ -0,0 +1,116 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6398-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.15.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.10.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-osx-py27.2.txt b/hstdp/2017.2/dev/hstdp-2017.2-osx-py27.2.txt new file mode 100644 index 0000000..aacab35 --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-osx-py27.2.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6400-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-osx-py35.0.txt b/hstdp/2017.2/dev/hstdp-2017.2-osx-py35.0.txt new file mode 100644 index 0000000..e54453e --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-osx-py35.0.txt @@ -0,0 +1,109 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6398-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.14.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.9.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-osx-py35.1.txt b/hstdp/2017.2/dev/hstdp-2017.2-osx-py35.1.txt new file mode 100644 index 0000000..7fda1c0 --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-osx-py35.1.txt @@ -0,0 +1,109 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astrolib.coords-0.39.6.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6398-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.15.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.10.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/dev/hstdp-2017.2-osx-py35.2.txt b/hstdp/2017.2/dev/hstdp-2017.2-osx-py35.2.txt new file mode 100644 index 0000000..235052b --- /dev/null +++ b/hstdp/2017.2/dev/hstdp-2017.2-osx-py35.2.txt @@ -0,0 +1,108 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6400-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.2.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2/hstdp-2017.2-linux-py27.final.txt b/hstdp/2017.2/hstdp-2017.2-linux-py27.final.txt new file mode 100644 index 0000000..3d1fbb4 --- /dev/null +++ b/hstdp/2017.2/hstdp-2017.2-linux-py27.final.txt @@ -0,0 +1,104 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/acstools-2.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/astropy-1.3.3-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/cairo-1.14.8-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/calcos-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/costools-1.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/crds-7.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/docutils-0.13.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/drizzlepac-2.1.17-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/fitsblender-0.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/hstcal-1.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/nictools-1.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/pyregion-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/pysynphot-0.9.8.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pytest-3.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/pytools-2016.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/reftools-1.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sphinx-1.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sphinxcontrib-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sphinxcontrib-websupport-1.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stistools-1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci-hst-3.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.convolve-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.distutils-0.3.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.image-2.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.imagemanip-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.imagestats-1.4.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.ndimage-0.10.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.numdisplay-1.6.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.skypac-0.9.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.sphere-0.2-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.stimage-0.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.tools-3.4.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stwcs-1.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/typing-3.6.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/wfc3tools-1.3.4-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/wfpc2tools-1.0.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2/hstdp-2017.2-linux-py35.final.txt b/hstdp/2017.2/hstdp-2017.2-linux-py35.final.txt new file mode 100644 index 0000000..f131866 --- /dev/null +++ b/hstdp/2017.2/hstdp-2017.2-linux-py35.final.txt @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/calcos-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/crds-7.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/docutils-0.13.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/drizzlepac-2.1.17-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/hstcal-1.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci-hst-3.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2/hstdp-2017.2-linux-py36.final.txt b/hstdp/2017.2/hstdp-2017.2-linux-py36.final.txt new file mode 100644 index 0000000..57d2c55 --- /dev/null +++ b/hstdp/2017.2/hstdp-2017.2-linux-py36.final.txt @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/acstools-2.0.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/alabaster-0.7.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/astropy-1.3.3-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/babel-2.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/calcos-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/costools-1.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/crds-7.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/decorator-4.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/docutils-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/drizzlepac-2.1.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/fitsblender-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/hstcal-1.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/imagesize-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/markupsafe-0.23-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/numpydoc-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/purge_path-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pyparsing-2.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/pyregion-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/pysynphot-0.9.8.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pytest-3.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/python-3.6.1-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/python-dateutil-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sphinx-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sphinxcontrib-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sphinxcontrib-websupport-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stistools-1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci-hst-3.0.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.image-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.skypac-0.9.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stsci.tools-3.4.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/stwcs-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/wfc3tools-1.3.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/linux-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2/hstdp-2017.2-osx-py27.final.txt b/hstdp/2017.2/hstdp-2017.2-osx-py27.final.txt new file mode 100644 index 0000000..63ae541 --- /dev/null +++ b/hstdp/2017.2/hstdp-2017.2-osx-py27.final.txt @@ -0,0 +1,90 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/acstools-2.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/astropy-1.3.3-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/calcos-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/costools-1.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/crds-7.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/docutils-0.13.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/drizzlepac-2.1.17-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/fitsblender-0.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/hstcal-1.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/nictools-1.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/pyregion-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/pysynphot-0.9.8.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pytest-3.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/pytools-2016.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/reftools-1.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sphinx-1.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sphinxcontrib-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sphinxcontrib-websupport-1.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stistools-1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci-hst-3.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.convolve-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.distutils-0.3.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.image-2.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.imagemanip-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.imagestats-1.4.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.ndimage-0.10.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.numdisplay-1.6.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.skypac-0.9.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.sphere-0.2-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.stimage-0.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.tools-3.4.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stwcs-1.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/typing-3.6.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/wfc3tools-1.3.4-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/wfpc2tools-1.0.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2/hstdp-2017.2-osx-py35.final.txt b/hstdp/2017.2/hstdp-2017.2-osx-py35.final.txt new file mode 100644 index 0000000..b0d2797 --- /dev/null +++ b/hstdp/2017.2/hstdp-2017.2-osx-py35.final.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/calcos-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/crds-7.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/docutils-0.13.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/drizzlepac-2.1.17-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/hstcal-1.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci-hst-3.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2/hstdp-2017.2-osx-py36.final.txt b/hstdp/2017.2/hstdp-2017.2-osx-py36.final.txt new file mode 100644 index 0000000..4e9c5bf --- /dev/null +++ b/hstdp/2017.2/hstdp-2017.2-osx-py36.final.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/acstools-2.0.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/alabaster-0.7.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/astropy-1.3.3-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/babel-2.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/calcos-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/costools-1.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/crds-7.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/decorator-4.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/docutils-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/drizzlepac-2.1.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/fitsblender-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/hstcal-1.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/imagesize-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/markupsafe-0.23-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/numpydoc-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/purge_path-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pyparsing-2.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/pyregion-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/pysynphot-0.9.8.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pytest-3.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/python-3.6.1-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/python-dateutil-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sphinx-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sphinxcontrib-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sphinxcontrib-websupport-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stistools-1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci-hst-3.0.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.image-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.skypac-0.9.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stsci.tools-3.4.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/stwcs-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/wfc3tools-1.3.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/astroconda/osx-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2/release_notes.md b/hstdp/2017.2/release_notes.md new file mode 100644 index 0000000..1c8d3e7 --- /dev/null +++ b/hstdp/2017.2/release_notes.md @@ -0,0 +1,56 @@ +# This 2017.2 HSTDP release is based on Anaconda/Miniconda, Python 3.5 + +Perform the following steps in your terminal to install the release: +-------------------------------------------------------------------- + +For existing Anaconda3 or Miniconda3 installations: + + $ conda create -n hstdp-2017.2 --file http://ssb.stsci.edu/conda/hstdp-2017.2/hstdp-2017.2-linux-py35.0.txt + +As bugfixes are announced your existing pipeline software may be updated by issuing the command: + + $ conda update -n hstdp-2017.2 --file http://ssb.stsci.edu/conda/hstdp-2017.2/hstdp-2017.2-linux-py35.%ITERATION.txt + +Where %ITERATION is the next incremental version of the environment specification file served from that URL. +For example, this release's next bugfix update procedure would be: + + $ conda update -n hstdp-2017.2 --file http://ssb.stsci.edu/conda/hstdp-2017.2/hstdp-2017.2-linux-py35.1.txt + + +Updates will not be supplied via external installation add-ons as either tarballs or scripts. +Also, keep in mind that Conda, the package manager, may prompt you automatically to upgrade packages deemed out of date. +Some back-end preparation changes have been implemented with this build to align procedures with those used in the JWST build methodology. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated pipeline installations. + +-------------- + +If you do need to install conda from scratch: + +1. Install Anaconda3 or Miniconda3 + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +For Anaconda: + + $ wget https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh + $ bash Anaconda3-4.3.1-Linux-x86_64.sh + $ export PATH=$HOME/anaconda3/bin:$PATH + + For Miniconda (if preferred): + + $ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.11-Linux-x86_64.sh + $ bash Miniconda3-4.3.11-Linux-x86_64.sh + $ export PATH=$HOME/miniconda3/bin:$PATH + +2. Install the pipeline + + $ conda create -n hstdp-2017.2 --file http://ssb.stsci.edu/conda/hstdp-2017.2/hstdp-2017.2-linux-py35.0.txt + +3. Enter a BASH shell + + $ bash + +4. Activate the pipeline environment + +$ source activate hstdp-2017.2 diff --git a/hstdp/2017.2/software_updates.md b/hstdp/2017.2/software_updates.md new file mode 100644 index 0000000..05bc888 --- /dev/null +++ b/hstdp/2017.2/software_updates.md @@ -0,0 +1,149 @@ +acstools 2.0.8 +============== +* Minor fix for compatibility with Numpy 1.12 or later. + +calcos 3.2.1 +============ + +- Updated code to be compatible with latest version of astropy and numpy + - Replaced astropy.io.fits new_table() calls with BinTableHDU.from_columns() + - Checked that numpy indices are integers + +- Added DGEOCORR step + - Applies delta geometric correction + - Uses new DGEOFILE reference file + - Requires DGEOCORR header keyword + +- Added XWLKCORR and YWLKCORR steps, removed WALKCORR step + - Applies X and Y walk corrections separately, using a lookup table reference file instead + of a polynomial calculation + - Uses XWLKFILE and YWLKFILE reference files + - Requires XWLKCORR and YWLKCORR header keywords + - WALKCORR and WALKTAB keywords now obsolete + +- Added capability to set N_SIGMA for wavelength calibration in wcptab reference file + - wcptab reference file has new column N_SIGMA + +- Fixed bug in DQ calculation when twozone extraction is used + - Affected ends of the spectrum when multiple fp-pos positions used + +crds 7.1.1 +========== +* JWST B7.1 first quarter, HSTDP-2017.2, new HST + JWST types + +drizzlepac 2.1.17 +================= +* Supressing aggravating astropy.wcs INFO messages + +fitsblender 0.3.2 +================= +* bugfix release + +HSTCAL 1.2.0 +============ +The following updates, specified in separate sections for each instrument, have been included with this release. + +## HSTCAL package updates +- `waf` installer upgraded to 1.9.9 to support Python 3.6. +- Added `--O3` and `--release-with-symbols` options in build configuration. +- Enhanced platform check by installer. +- HSTCAL error codes were consolidated into a single global include file. + +## ACS +- Fixed uninitialized variable in `prinfo.c`. +- Corrected `--version` reporting and added `-r` to report version string that was previously reported by `--version`. + +## STIS +- calstis version 3.4.1 +- fixed a bug that garbled some FITS HISTORY keywords +- fixed a bug in the bar finding algorithm +- fixed a bug in processing highres echelle data in which the error and dq arrays were incorrectly calculated + + No keyword changes. + + The only science changes will be to longslit spectroscopic data and high resolution echelle data. + +- [x] Affects old data +- [x] Users should re-retrieve affected datasets from the archive +- [x] updated reference files delivered by science team + + +## WFC3 +- calwf3 updates to version 3.4.1 with this release + +### Photometry Keyword Updates +- There are default description strings in calwf3 which are used when the keyword is being added to a header where it doesn't already exist. This update makes the text consistent among all UVIS headers, including the global header keywords that ``calwf3`` adds for user convenience that are not populated in the raw headers during conversion. See issue #67 for more details. The table below details the changes to the photometry header keywords: + +|Detector | Extension |Keyword | Previous | Updated | +|----------|--------------|-----------|------------|------------| +|UVIS |0,1,4| PHOTCORR | populate photometric header keywords | NO CHANGE | +|UVIS |0,1,4| FLUXCORR | convert to absolute flux units | Scale UVIS2 to match UVIS1 using PHTRATIO| +|UVIS |0 |PHOTFLAM| inverse sensitivity | Inverse sensitivity, ergs/cm2/A/e-| +|UVIS|1,4| PHOTFLAM | Inverse sensitivity, ergs/cm2/A/e-| NO CHANGE | +|UVIS|0 | PHOTZPT | zero point | ST magnitude zero point| +|UVIS|1, 4| PHOTZPT | zero point | ST magnitude zero point| +|UVIS| 0 |PHTFLAM1| photometry scaling for chip 1| Ch1 Inv Sens, use PHOTFLAM for UV filters| +|UVIS|1,4| PHTFLAM1|PHOTFLAM on chip1 when scales are not uniform | Ch1 Inv Sens, use PHOTFLAM for UV filters| +|UVIS|0 | PHTFLAM2| photometry scaling for chip 2| Ch2 Inv Sens, use PHOTFLAM if FLUXCORR=COMPLETE| +|UVIS|1,4 |PHTFLAM2| PHOTFLAM on chip2 when scales are not uniform |Ch2 Inv Sens, use PHOTFLAM if FLUXCORR=COMPLETE | +|UVIS|0 |PHTRATIO| photometry scaling for chip2 to chip 1| PHTFLAM2/PHTFLAM1 ratio| +|UVIS|1,4|PHTRATIO|Ratio of PHTFLAM1/PHTFLAM2 | PHTFLAM2/PHTFLAM1 ratio | +|UVIS|1,4 |PHOTMODE| observation con | Observing configuration | +|UVIS|1,4 | PHOTFNU| inverse sensitivity, Jy\*Sec/electron | Inverse sensitivity, Jy\*sec/e- | +|UVIS|1,4 | PHOTPLAM | pivot wavelength | NO CHANGE | +|UVIS|1,4| PHOTBW | RMS bandwidth | NO CHANGE| + +- [x] Affects old data, all UVIS data will be affected since the keywords are commonly populated +- [x] Users should re-retrieve affected datasets from the archive for updated header keywords +- [x] Affects full-frame and subarray UVIS datasets for all filters + +- Code cleanup specific to issue #55 and issue #63; these do not change any data results + +### Updated reference files which will be part of the reprocessing +This software update itself does not affect data values, just header keyword descriptions. However, the team will be delivering updated reference files at the same time which will be used during reprocessing with calwf3 version 3.4.1. The following reference files will be delivered and used by the archive for reprocessing after this software change has been installed. + +|Keyword | Description | Applied Date Range for the new file (USEAFTER)| selection keywords | Content update or format change? | +|-----------|--------------|------------------------------------------|-----------------------|----------------| +| IMPHTTAB | photometry table used by calwf3 | All UVIS data | DETECTOR = UVIS, PHOTCORR = PERFORM| Update | +| BIASFILE | bias reference file | All UVIS data | DETECTOR = UVIS, BIASCORR = PERFORM| Update | +|FLSHFILE | post-flash reference file | July 2012 - present | DETECTOR = UVIS | Update | + +Reprocessing will begin after the delivery of the reference files and those will affect header keyword values and data for the following: + +* IMPHTTAB: only affects UVIS data which has PHOTCORR = PERFORM, this excludes calibration files like darks and biases +* BIASFILE: only affects UVIS data which is corrected for bias, including subarrays, except for charge injected data, data which has been read out using a single amplifier, or data from modes which are no longer supported. The science team also plans to begin delivering one bias per year. +* FLSHFILE: applies to all data taken with post-flash + +pysynphot 0.9.8.7 +================= + * Fixed tagging issue for "git describe" and failed tests. + * No change to user-facing interface otherwise. + +reftools 1.7.4 +============== +* bugfix release + +stsci.tools 3.4.11 +================== +* Multiple compatibility improvements + +stsci.convolve 2.2.1 +==================== +* bugfix release + + +Additional software included in this update +=========================================== +* nictools 1.1.3 +* stistools 1.1 +* stsci.distutils-0.3.8 +* stsci.image-2.2.0 +* stsci.imagemanip-1.1.2 +* stsci.imagestats-1.4.1 +* stsci.ndimage-0.10.1 +* stsci.numdisplay-1.6.1 +* stsci.skypac-0.9.4 +* stsci.sphere-0.2 +* stsci.sphinxext-1.2.2 +* stsci.stimage-0.2.1 +* stwcs 1.3.2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.3.txt b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.3.txt new file mode 100644 index 0000000..a032766 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.3.txt @@ -0,0 +1,127 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6400-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.4.txt b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.4.txt new file mode 100644 index 0000000..6c855b1 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.4.txt @@ -0,0 +1,127 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6400-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0rc3.dev0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.5.txt b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.5.txt new file mode 100644 index 0000000..caa7817 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.5.txt @@ -0,0 +1,127 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6400-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0rc5.dev0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.6.txt b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.6.txt new file mode 100644 index 0000000..a61b5f8 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py27.6.txt @@ -0,0 +1,104 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3.3-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0rc6.dev0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/typing-3.6.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.3.txt b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.3.txt new file mode 100644 index 0000000..1693f43 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.3.txt @@ -0,0 +1,117 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6400-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.4.txt b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.4.txt new file mode 100644 index 0000000..8bd2a02 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.4.txt @@ -0,0 +1,117 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6400-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0rc3.dev0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.5.txt b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.5.txt new file mode 100644 index 0000000..a92cad1 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.5.txt @@ -0,0 +1,117 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6400-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0rc5.dev0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.2-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.6.txt b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.6.txt new file mode 100644 index 0000000..1c936ec --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py35.6.txt @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0rc6.dev0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-linux-py36.6.txt b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py36.6.txt new file mode 100644 index 0000000..2c135c6 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-linux-py36.6.txt @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3.3-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0rc6.dev0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.1-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.3.txt b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.3.txt new file mode 100644 index 0000000..7b1c52a --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.3.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6400-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.4.txt b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.4.txt new file mode 100644 index 0000000..29ceb08 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.4.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6400-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0rc3.dev0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.5.txt b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.5.txt new file mode 100644 index 0000000..5226e94 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.5.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6400-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0rc5.dev0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.6.txt b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.6.txt new file mode 100644 index 0000000..5ee4f85 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py27.6.txt @@ -0,0 +1,90 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3.3-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0rc6.dev0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/typing-3.6.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.3.txt b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.3.txt new file mode 100644 index 0000000..dcd319a --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.3.txt @@ -0,0 +1,108 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6400-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0rc2.dev0-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.4.txt b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.4.txt new file mode 100644 index 0000000..1bc52b9 --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.4.txt @@ -0,0 +1,108 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6400-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0rc3.dev0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.5.txt b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.5.txt new file mode 100644 index 0000000..fc6c02c --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.5.txt @@ -0,0 +1,108 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.7.dev5-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6400-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1.dev0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0rc5.dev0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2k-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.2-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.4.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.6.txt b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.6.txt new file mode 100644 index 0000000..dda9c1a --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py35.6.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0rc6.dev0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/dev/hstdp-2017.2-osx-py36.6.txt b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py36.6.txt new file mode 100644 index 0000000..f69f00e --- /dev/null +++ b/hstdp/2017.2a/dev/hstdp-2017.2-osx-py36.6.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3.3-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0rc6.dev0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.1-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.2a/hstdp-2017.2a-linux-py27.final.txt b/hstdp/2017.2a/hstdp-2017.2a-linux-py27.final.txt new file mode 100644 index 0000000..8fe54fd --- /dev/null +++ b/hstdp/2017.2a/hstdp-2017.2a-linux-py27.final.txt @@ -0,0 +1,104 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/acstools-2.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/astropy-1.3.3-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/cairo-1.14.8-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/calcos-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/costools-1.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/crds-7.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/docutils-0.13.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/drizzlepac-2.1.17-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/fitsblender-0.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/nictools-1.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/pyregion-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/pysynphot-0.9.8.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pytest-3.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/pytools-2016.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/reftools-1.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sphinx-1.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sphinxcontrib-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sphinxcontrib-websupport-1.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stistools-1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci-hst-3.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.convolve-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.distutils-0.3.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.image-2.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.imagemanip-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.imagestats-1.4.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.ndimage-0.10.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.numdisplay-1.6.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.skypac-0.9.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.sphere-0.2-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.stimage-0.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.tools-3.4.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stwcs-1.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/typing-3.6.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/wfc3tools-1.3.4-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/wfpc2tools-1.0.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2a/hstdp-2017.2a-linux-py35.final.txt b/hstdp/2017.2a/hstdp-2017.2a-linux-py35.final.txt new file mode 100644 index 0000000..9dbdb09 --- /dev/null +++ b/hstdp/2017.2a/hstdp-2017.2a-linux-py35.final.txt @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/calcos-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/crds-7.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/docutils-0.13.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/drizzlepac-2.1.17-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci-hst-3.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2a/hstdp-2017.2a-linux-py36.final.txt b/hstdp/2017.2a/hstdp-2017.2a-linux-py36.final.txt new file mode 100644 index 0000000..3c621a9 --- /dev/null +++ b/hstdp/2017.2a/hstdp-2017.2a-linux-py36.final.txt @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/acstools-2.0.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/alabaster-0.7.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/astropy-1.3.3-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/babel-2.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/calcos-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/costools-1.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/crds-7.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/decorator-4.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/docutils-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/drizzlepac-2.1.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/fitsblender-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/imagesize-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/markupsafe-0.23-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/numpydoc-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/purge_path-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pyparsing-2.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/pyregion-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/pysynphot-0.9.8.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pytest-3.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/python-3.6.1-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/python-dateutil-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sphinx-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sphinxcontrib-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sphinxcontrib-websupport-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stistools-1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci-hst-3.0.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.image-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.skypac-0.9.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stsci.tools-3.4.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/stwcs-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/wfc3tools-1.3.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/linux-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2a/hstdp-2017.2a-osx-py27.final.txt b/hstdp/2017.2a/hstdp-2017.2a-osx-py27.final.txt new file mode 100644 index 0000000..ab7223f --- /dev/null +++ b/hstdp/2017.2a/hstdp-2017.2a-osx-py27.final.txt @@ -0,0 +1,90 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/acstools-2.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/astropy-1.3.3-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/calcos-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/costools-1.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/crds-7.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/docutils-0.13.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/drizzlepac-2.1.17-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/fitsblender-0.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/nictools-1.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/pyregion-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/pysynphot-0.9.8.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pytest-3.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/pytools-2016.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/reftools-1.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sphinx-1.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sphinxcontrib-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sphinxcontrib-websupport-1.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stistools-1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci-hst-3.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.convolve-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.distutils-0.3.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.image-2.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.imagemanip-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.imagestats-1.4.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.ndimage-0.10.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.numdisplay-1.6.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.skypac-0.9.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.sphere-0.2-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.stimage-0.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.tools-3.4.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stwcs-1.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/typing-3.6.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/wfc3tools-1.3.4-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/wfpc2tools-1.0.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2a/hstdp-2017.2a-osx-py35.final.txt b/hstdp/2017.2a/hstdp-2017.2a-osx-py35.final.txt new file mode 100644 index 0000000..3aee99b --- /dev/null +++ b/hstdp/2017.2a/hstdp-2017.2a-osx-py35.final.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/calcos-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/crds-7.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/docutils-0.13.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/drizzlepac-2.1.17-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci-hst-3.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2a/hstdp-2017.2a-osx-py36.final.txt b/hstdp/2017.2a/hstdp-2017.2a-osx-py36.final.txt new file mode 100644 index 0000000..e79577b --- /dev/null +++ b/hstdp/2017.2a/hstdp-2017.2a-osx-py36.final.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/acstools-2.0.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/alabaster-0.7.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/astropy-1.3.3-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/babel-2.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/calcos-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/costools-1.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/crds-7.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/decorator-4.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/docutils-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/drizzlepac-2.1.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/fitsblender-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/imagesize-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/markupsafe-0.23-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/numpydoc-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/purge_path-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pyparsing-2.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/pyregion-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/pysynphot-0.9.8.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pytest-3.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/python-3.6.1-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/python-dateutil-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sphinx-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sphinxcontrib-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sphinxcontrib-websupport-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stistools-1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci-hst-3.0.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.image-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.skypac-0.9.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stsci.tools-3.4.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/stwcs-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/wfc3tools-1.3.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/astroconda/osx-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.2a/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.2a/release_notes.md b/hstdp/2017.2a/release_notes.md new file mode 100644 index 0000000..7a06c7a --- /dev/null +++ b/hstdp/2017.2a/release_notes.md @@ -0,0 +1,56 @@ +# This 2017.2a HSTDP release is based on Anaconda/Miniconda, Python 3.5 + +Perform the following steps in your terminal to install the release: +-------------------------------------------------------------------- + +For existing Anaconda3 or Miniconda3 installations: + + $ conda create -n hstdp-2017.2a --file http://ssb.stsci.edu/conda/hstdp-2017.2/hstdp-2017.2-linux-py35.3.txt + +As bugfixes are announced your existing pipeline software may be updated by issuing the command: + + $ conda update -n hstdp-2017.2a --file http://ssb.stsci.edu/conda/hstdp-2017.2/hstdp-2017.2-linux-py35.%ITERATION.txt + +Where %ITERATION is the next incremental version of the environment specification file served from that URL. +For example, this release's next bugfix update procedure would be: + + $ conda update -n hstdp-2017.2a --file http://ssb.stsci.edu/conda/hstdp-2017.2/hstdp-2017.2-linux-py35.4.txt + + +Updates will not be supplied via external installation add-ons as either tarballs or scripts. +Also, keep in mind that Conda, the package manager, may prompt you automatically to upgrade packages deemed out of date. +Some back-end preparation changes have been implemented with this build to align procedures with those used in the JWST build methodology. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated pipeline installations. + +-------------- + +If you do need to install conda from scratch: + +1. Install Anaconda3 or Miniconda3 + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +For Anaconda: + + $ wget https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh + $ bash Anaconda3-4.3.1-Linux-x86_64.sh + $ export PATH=$HOME/anaconda3/bin:$PATH + + For Miniconda (if preferred): + + $ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.11-Linux-x86_64.sh + $ bash Miniconda3-4.3.11-Linux-x86_64.sh + $ export PATH=$HOME/miniconda3/bin:$PATH + +2. Install the pipeline + + $ conda create -n hstdp-2017.2a --file http://ssb.stsci.edu/conda/hstdp-2017.2/hstdp-2017.2-linux-py35.3.txt + +3. Enter a BASH shell + + $ bash + +4. Activate the pipeline environment + +$ source activate hstdp-2017.2a diff --git a/hstdp/2017.2a/software_updates.md b/hstdp/2017.2a/software_updates.md new file mode 100644 index 0000000..9e024a3 --- /dev/null +++ b/hstdp/2017.2a/software_updates.md @@ -0,0 +1,39 @@ +# HSTCAL Version 1.3.0 + +The following updates have been included with this release. + +## ACS +- CALACS updates to version 9.2.0 with this release. +- New BLEVCORR algorithm that uses new OSCNTAB, which now correctly calculates bias level for AMP B and D in subarrays. +- New SINKCORR step to apply new SNKCFILE in order to flag sink pixels. See [ACS ISR 2017-01](http://www.stsci.edu/hst/acs/documents/isrs/isr1701.pdf). +- New pixel based PCTECORR algorithm implemented (``CTE_NAME= 'PixelCTE 2017'``). + * The code defaults to this new algorithm, however, the old one can still be executed using the command line option ``--ctegen <1|2>``. _Note: The correct accompanying PCTETAB file must also be used._ + * The user can now override the PCTETAB file used (normally specified in the image header) with the command line option ``--pctetab <file path>``. + * The number of threads used for computing the PCTECORR can now be specified with the command line option ``--nthreads <N>``. _Note: OPENMP is required for N > 1._ +- Fixed uninitialized variable in `prinfo.c`. +- Corrected `--version` reporting and added `-r` to report version string that was previously reported by `--version`. + +- [x] Affects old data. +- [x] Users should re-retrieve affected datasets from the archive. +- [x] Updated reference files delivered by science team. + +# Notes + + * Due to the quick succession of this release from [1.2.0](https://github.com/spacetelescope/hstcal/tree/1.2.0), please refer to the following [release notes](https://github.com/spacetelescope/hstcal/releases/tag/1.2.0) for other recent updates. + + +# Additional software included in this update + +* nictools 1.1.3 +* stistools 1.1 +* stsci.distutils-0.3.8 +* stsci.image-2.2.0 +* stsci.imagemanip-1.1.2 +* stsci.imagestats-1.4.1 +* stsci.ndimage-0.10.1 +* stsci.numdisplay-1.6.1 +* stsci.skypac-0.9.4 +* stsci.sphere-0.2 +* stsci.sphinxext-1.2.2 +* stsci.stimage-0.2.1 +* stwcs 1.3.2 diff --git a/hstdp/2017.3/README.md b/hstdp/2017.3/README.md new file mode 100644 index 0000000..b84e7a1 --- /dev/null +++ b/hstdp/2017.3/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2017.3 --file http://ssb.stsci.edu/releases/hstdp/2017.3/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2017.3 --file http://ssb.stsci.edu/releases/hstdp/2017.3/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh +$ bash Anaconda3-4.3.1-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.11-Linux-x86_64.sh +$ bash Miniconda3-4.3.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2017.3 --file http://ssb.stsci.edu/releases/hstdp/2017.3/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2017.3 +``` diff --git a/hstdp/2017.3/dev/hstdp-2017.3-linux-py27.00.txt b/hstdp/2017.3/dev/hstdp-2017.3-linux-py27.00.txt new file mode 100644 index 0000000..57972bd --- /dev/null +++ b/hstdp/2017.3/dev/hstdp-2017.3-linux-py27.00.txt @@ -0,0 +1,104 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3.3-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.4.dev130-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/typing-3.6.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.3/dev/hstdp-2017.3-linux-py35.00.txt b/hstdp/2017.3/dev/hstdp-2017.3-linux-py35.00.txt new file mode 100644 index 0000000..af25876 --- /dev/null +++ b/hstdp/2017.3/dev/hstdp-2017.3-linux-py35.00.txt @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.4.dev130-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.3/dev/hstdp-2017.3-linux-py36.00.txt b/hstdp/2017.3/dev/hstdp-2017.3-linux-py36.00.txt new file mode 100644 index 0000000..c4b5d59 --- /dev/null +++ b/hstdp/2017.3/dev/hstdp-2017.3-linux-py36.00.txt @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3.3-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.4.dev130-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.13.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.1-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.3/dev/hstdp-2017.3-osx-py27.00.txt b/hstdp/2017.3/dev/hstdp-2017.3-osx-py27.00.txt new file mode 100644 index 0000000..daac4d2 --- /dev/null +++ b/hstdp/2017.3/dev/hstdp-2017.3-osx-py27.00.txt @@ -0,0 +1,90 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3.3-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.4.dev130-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/typing-3.6.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.3/dev/hstdp-2017.3-osx-py35.00.txt b/hstdp/2017.3/dev/hstdp-2017.3-osx-py35.00.txt new file mode 100644 index 0000000..d39ff1e --- /dev/null +++ b/hstdp/2017.3/dev/hstdp-2017.3-osx-py35.00.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.4.dev130-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.3/dev/hstdp-2017.3-osx-py36.00.txt b/hstdp/2017.3/dev/hstdp-2017.3-osx-py36.00.txt new file mode 100644 index 0000000..a0ba5e0 --- /dev/null +++ b/hstdp/2017.3/dev/hstdp-2017.3-osx-py36.00.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3.3-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.370-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.4.dev130-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.13.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.1-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/hstdp/2017.3/hstdp-2017.3-linux-py27.final.txt b/hstdp/2017.3/hstdp-2017.3-linux-py27.final.txt new file mode 100644 index 0000000..911e9ff --- /dev/null +++ b/hstdp/2017.3/hstdp-2017.3-linux-py27.final.txt @@ -0,0 +1,104 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/acstools-2.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/alabaster-0.7.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/astropy-1.3.3-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/cairo-1.14.8-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/calcos-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/costools-1.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/crds-7.1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/docutils-0.13.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/drizzlepac-2.1.17-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/fitsblender-0.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/nictools-1.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pyregion-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pysynphot-0.9.8.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pytest-3.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pytools-2016.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/reftools-1.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinx-1.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinxcontrib-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinxcontrib-websupport-1.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stistools-1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci-hst-3.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.convolve-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.distutils-0.3.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.image-2.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.imagemanip-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.imagestats-1.4.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.ndimage-0.10.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.numdisplay-1.6.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.skypac-0.9.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.sphere-0.2-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.stimage-0.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.tools-3.4.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stwcs-1.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/typing-3.6.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/wfc3tools-1.3.4-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/wfpc2tools-1.0.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.3/hstdp-2017.3-linux-py35.final.txt b/hstdp/2017.3/hstdp-2017.3-linux-py35.final.txt new file mode 100644 index 0000000..48afd7b --- /dev/null +++ b/hstdp/2017.3/hstdp-2017.3-linux-py35.final.txt @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/calcos-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/crds-7.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/docutils-0.13.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/drizzlepac-2.1.17-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci-hst-3.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.3/hstdp-2017.3-linux-py36.final.txt b/hstdp/2017.3/hstdp-2017.3-linux-py36.final.txt new file mode 100644 index 0000000..a2618d6 --- /dev/null +++ b/hstdp/2017.3/hstdp-2017.3-linux-py36.final.txt @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/acstools-2.0.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/alabaster-0.7.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/astropy-1.3.3-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/babel-2.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/calcos-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/costools-1.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/crds-7.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/decorator-4.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/docutils-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/drizzlepac-2.1.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/fitsblender-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/imagesize-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/markupsafe-0.23-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/numpydoc-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/purge_path-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pyparsing-2.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pyregion-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pysynphot-0.9.8.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pytest-3.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/python-3.6.1-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/python-dateutil-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinx-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinxcontrib-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinxcontrib-websupport-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stistools-1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci-hst-3.0.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.image-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.skypac-0.9.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.tools-3.4.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stwcs-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/wfc3tools-1.3.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.3/hstdp-2017.3-osx-py27.final.txt b/hstdp/2017.3/hstdp-2017.3-osx-py27.final.txt new file mode 100644 index 0000000..e0b8886 --- /dev/null +++ b/hstdp/2017.3/hstdp-2017.3-osx-py27.final.txt @@ -0,0 +1,90 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/acstools-2.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/alabaster-0.7.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/astropy-1.3.3-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/babel-2.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/calcos-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/costools-1.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/crds-7.1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/d2to1-0.2.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/decorator-4.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/docutils-0.13.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/drizzlepac-2.1.17-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/fitsblender-0.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/imagesize-0.7.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/nictools-1.1.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/numpydoc-0.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/purge_path-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pyregion-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pysynphot-0.9.8.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pytest-3.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pytools-2016.1-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/reftools-1.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/snowballstemmer-1.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinx-1.6.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinxcontrib-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinxcontrib-websupport-1.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stistools-1.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci-hst-3.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.convolve-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.distutils-0.3.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.image-2.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.imagemanip-1.1.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.imagestats-1.4.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.ndimage-0.10.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.numdisplay-1.6.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.skypac-0.9.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.sphere-0.2-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.sphinxext-1.2.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.stimage-0.2.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.tools-3.4.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stwcs-1.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/typing-3.6.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/wfc3tools-1.3.4-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/wfpc2tools-1.0.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.3/hstdp-2017.3-osx-py35.final.txt b/hstdp/2017.3/hstdp-2017.3-osx-py35.final.txt new file mode 100644 index 0000000..540d2d5 --- /dev/null +++ b/hstdp/2017.3/hstdp-2017.3-osx-py35.final.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/calcos-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/crds-7.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/docutils-0.13.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/drizzlepac-2.1.17-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci-hst-3.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.3/hstdp-2017.3-osx-py36.final.txt b/hstdp/2017.3/hstdp-2017.3-osx-py36.final.txt new file mode 100644 index 0000000..dd7fc51 --- /dev/null +++ b/hstdp/2017.3/hstdp-2017.3-osx-py36.final.txt @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/acstools-2.0.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/alabaster-0.7.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/astropy-1.3.3-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/babel-2.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/calcos-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/costools-1.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/crds-7.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/decorator-4.0.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/docutils-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/drizzlepac-2.1.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/fitsblender-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/imagesize-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/markupsafe-0.23-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/numpydoc-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/purge_path-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pyparsing-2.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pyregion-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pysynphot-0.9.8.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pytest-3.1.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/python-3.6.1-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/python-dateutil-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinx-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinxcontrib-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinxcontrib-websupport-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stistools-1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci-hst-3.0.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.image-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.skypac-0.9.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.tools-3.4.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stwcs-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/wfc3tools-1.3.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.3/latest-linux b/hstdp/2017.3/latest-linux new file mode 100644 index 0000000..48afd7b --- /dev/null +++ b/hstdp/2017.3/latest-linux @@ -0,0 +1,99 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/alabaster-0.7.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/calcos-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/crds-7.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/docutils-0.13.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/drizzlepac-2.1.17-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/qt-5.6.2-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci-hst-3.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/linux-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.3/latest-osx b/hstdp/2017.3/latest-osx new file mode 100644 index 0000000..540d2d5 --- /dev/null +++ b/hstdp/2017.3/latest-osx @@ -0,0 +1,88 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/acstools-2.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/alabaster-0.7.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/astropy-1.3.3-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/babel-2.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/calcos-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/crds-7.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/docutils-0.13.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/drizzlepac-2.1.17-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/hstcal-1.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/imagesize-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/numpydoc-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/purge_path-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pysynphot-0.9.8.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pytest-3.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/snowballstemmer-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinx-1.6.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinxcontrib-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sphinxcontrib-websupport-1.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci-hst-3.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.skypac-0.9.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/stwcs-1.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/astroconda/osx-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2017.3/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/hstdp/2017.3/release_notes.md b/hstdp/2017.3/release_notes.md new file mode 100644 index 0000000..9f4bc26 --- /dev/null +++ b/hstdp/2017.3/release_notes.md @@ -0,0 +1,4 @@ +# Release Notes + +* 2017/09/06 - Iteration 0 +* 2017/09/25 - Final diff --git a/hstdp/2017.3/software_updates.md b/hstdp/2017.3/software_updates.md new file mode 100644 index 0000000..5971c15 --- /dev/null +++ b/hstdp/2017.3/software_updates.md @@ -0,0 +1,204 @@ +# CRDS 7.1.5 + +- Updated git hash for 7.1.5 release. +- Added self.args.update\_pickle to crds.bestrefs as a condition for recording bestrefs errors as "updates" anyway so that they're available for regressions. +- Added support for JWST P\_READPA pattern keyword. +- Bugfix crds.io.factory, geis: missing \_\_future\_\_ absolute\_import Tweak crds.io.abstract: bad value enumeration regex wartning vs. error Unit test performance: crds.bestrefs --affected-datasets smoke test Doctest tweaks: use of -ignore- in test\_certify, Python-2 vs. 3, excessive detail text +- Pylinting. One typo bugfix for selectors simple value substitutions. +- Updated unit tests for ASDF warnings. +- Updated unit tests. +- Updated system crdscfg from latest cal code. +- Updated checksum in nirpsec\_wavecorr.rmap spec. +- Updated text description for NIRSPEC WAVECORR. +- Restored test\_bestrefs dt\_bestrefs\_dataset\_only\_ids() test case. +- Modified crds.core.selectors to make the overlapping match case warning for JWST non-verbose since for JWST by default it will result in a runtime error. For HST, it's still verbose, because there are many bad rmaps. Changed terminology from "raise\_ambiguous" (overlapping matches detected at runtime are exceptions to "merge\_overlaps" (explains consequences of allowing overlapping cases: dynamic merging of selector data.) +- Modified handling of raise\_ambigiuous in crds.core.selectors so that rmap validation for JWST will issue warnings when match cases overlap. HST on the other hand will retain the current verbose\_warning() approach since it has so many known overlaps. +- Switched JWST pipeline module reference location warning to a normal try/except so that it doesn't capture the --debug-traps tracebacks with expected exceptions. Modified jwst.locate.filekind\_to\_keyword() to handle missing schema coverage by returning the filekind name instead. +- More optimization for rmap selector substitutions, comments for related methods. +- Optimized rmap selector substitutions code. +- Initial rewrite of rmap selector substitutions code to add default substitutions for SUBARRAY=GENERIC as well as general capability. This makes explicit rmap header updates for GENERIC unnecessary, a common omission. +- Refactored Selector.do\_substitutions() +- Made dictionary copy of DEFAULT\_SUBSTITUTIONS to avoid cross-talk between rmaps. +- Created "default" rmap substitutions for SUBARRAY=GENERIC --> N/A since it's fairly common to forget the explicit subsitution block in the rmap header that is currently required. This applies to HST as well. +- Added a bestrefs regression canary test to prove it will detect mismatches between current bestrefs and stored .json results. Fixed crds.list doctest reference to specific file path. +- Added caching to utils.get\_object() saving about 10-15% of COS regression total runtime. +- Made crds.list output more deterministic Tweaked crds.list doctests. +- More crds.list test coverage. +- Bugfix in test-related clear\_crds\_state(). Bugfix in crds.list --references --cat Added basic unit test coverage for crds.list +- Refactored is\_writable() to better isolate possible multiprocessing failures in one of the os calls. +- Added baseline NIRSPEC WAVECORR typespec. +- Migrated crds.checksum tool to standard CRDS command line tool format, enabling debugging flawed typespecs that wont even checksum. +- Regenerated jwst\_system\_crdscfg\_b7.1.yaml after adding new EXP\_TYPE to .cfg mappings. +- Added missing EXP\_TYPE values to jwst\_system\_crdscfg\_b7.1.yaml +- Added crds.misc.cal\_pipelines module to provide project independent API to SDP for determining nominal .cfg's from EXP\_TYPE. Not implemented for HST. +- Added NIRCAM SPECWCS rmap/spec. +- One last overhaul of jwst.pipeline to add header\_to\_pipelines(). Inverted parameter order of header\_to\_retypes() mimicking header\_to\_pipelines() to enable defaulting context. +- Modified JWTS pipeline module to use either B7 or B7.1 default SYSTEM CRDSCFG files in case never delivered as reference. +- Added translation for CALIBRATION\_SOFTWARE\_VERSION to CAL\_VER, META.CALIBRATION\_SOFTWARE\_VERSION. +- Modified bestrefs to simplify ID output for unassociated exposures of the form <id:id> to <id>. This is mainly for JWST and only affects bestrefs error log output. +- Changed regex for s/w versions to account for trailing noise which is ignored. Switched "using default SYSTEM CRDSCFG" verbose warning to normal warning. Adjusted jwst\_system\_crdscfg\_b7.yaml header parameters to make it submissible. Updated opaque\_asd.tmp to a more current file to avoid ASDF version warnings. +- Added sorting to jwst.pipeline .cfg lists for better diffs between versions. +- Added log output to SYSTEM CRDSCFG interpretation methods to show what reference types were identified and from which exp\_type and reference file. +- Updated SYSTEM CRDSCFG baseline reference for b7.1 Tweaked manual/automatic generation string used to break apart old reference during regeneration. +- Regenerated default SYSTEM CRDSCFG reference from JWST cal code 0.7.0. Modified pipeline.py to operate based on loaded YAML only, no more computations. +- Relocated initial B7 system\_crdscfg default reference. +- Preliminary rewrite of SYSTEM CRDSCFG reference file format. +- Added Howard's comments for B7.1 support for SYSTEM CRDSCFG generation. +- Changed crds sync warning for rejected/backlisted files to verbose since full caches will include bad files. +- unit test update for change in default classes. +- Updated unit tests for change in JWST default class structure. +- Updated nirspec .tpn's to reflect new definitions that enable GENERIC to be a non-full-frame image. +- Removed PUPIL as nircam specific constraint. +- Added CENWAVE=1223 to COS per Jira REDCAT-33. +- Added certification check for rmap selectors, class\_list length must match parkey length, practically speaking detects missing USEAFTER structure due to missing "classes" field now relevant due to change in default JWST class structure. +- Improved exception message for rmap update reference file insertion exceptions, in this case because of a mismatch between parkey and classes. +- Improved context resolution in cmdline in several ways. Changed USEAFTER\_DATE to USEAFTER in wfpc2 .tpns, not \_ld.tpns. Polished "crds list --cat". Changed a number of opaque certification file test cases from symlinks to actual files. +- Overhauled "crds list --cat" to make better use of references and mappings implied by contexts as well as explicitly listed files. This is a precursor to more polymorphic listing by filetype. +- Added better exception handling to remote context push and list functions used to track and display actual pipeline contexts. +- Changed default rmap structure for JWST to include UseAfter making the heretofore required "classes" rmap header field now optional. +- Moved crds.tables module to crds.io.tables and adjusted module imports and unit tests accordingly. +- Moved crds.tables module into crds.io package and refactored unit tests and module imports. +- Improvements to factory.get\_filetype(), particularly GEIS vs. FITS discrimination for opaque temporary files. +- Added additional file types (.yaml) to installed data files from observatory packages. +- Cleaned up JWST translations of the former REFFILE datamodels paths since the REFFILE tier was eliminated from the generic referencefile schema. +- Modified config.filetype() to treat .xNd as GEIS as well as .xNh. +- I/O refactoring to clean up "keyword cross-strapping" developed for JWST to enable manually configured or automatically scraped keyword equivalences between cal code datamodels paths and FITS or other physical keywords. This approach moves custom JWST code out of the abstract I/O module and lines up manual configuration against the possibility that JWST datamodels integration becomes difficult to maintain at some point. Several misc. pylint cleanups. +- Multiple fixes for new pipeline refactoring: Modified pipeline module to define CAL\_VER using installed JWST code if it is not defined in the incoming parameter set. Modified cal\_ver version regex to support build suffix, e.g. 1.2.3.dev456 Modified VersionAfterSelector to truncate versions at 1.2.3 Modified pipeline to fix rmap.get\_best\_ref typo for identifying system crdscfg. Added system crdscfg reference file fetch to crds.jwst.pipeline. Added system crdscfg reference file location/path to crds.jwst.pipeline. +- More crds.jwst.pipeline refactoring: Factored reference file generation code out of runtime pipeline module. Switched to using default YAML taken from prototype reference file. +- Factored prototype reference file text out of JWST pipeline module into a true reference file. Added type specification for system crdscfg (originally planned as system calcfg). Added baseline reference. Added additional `context` parameter to header\_to\_reftypes() hook function required to define the context used to identify system\_crdscfg reference. Updated unit tests. +- Bugfix (shaky) for VersionAfterSelector.match\_item() single parameter case, return version as string not list split on "." +- Modified parkey for system\_crdscfg.rmap spec file. +- Added baseline spec for system\_crdscfg used to define required reftypes for JWST based on context, calver, and exp\_type. +- Added some unit test cases to jwst.pipeline to help verify behavior after refactoring to reference file based configuration. +- Fix for is\_simple\_mapping() when called with loaded mapping object. +- Revised JWST .tpns redistributing some constraints back to instrument-specific checking. +- Fixed typo in crds\_cache\_locking that broke acquisition logging (but not acquisition). Refactored logging for CRDS\_READONLY\_CACHE=1 case of cache locking. +- Fixed typo in crds\_cache\_locking that broke acquire logging. Added logging for CRDS\_READONLY\_CACHE=True cach locking case. +- Added --profile switch to runtests for profiling unit tests. +- Docs tweak. +- Added documentation for CRDS Cache locking, as well as a basic description of reference file conventions and matching pattern specification. +- Eliminated redundant io keyword cross-strap equivalence tuples for the null case of (keyword, keyword). +- Switched back to hard coded \_\_version\_\_ since the pkg\_resources version conflicts with the CRDS server version number obscuring the client version. +- Updated version info for development. +- Updated git hash for 7.1.4 +- Modified CRDS \_\_version\_\_ to use version from setup.py via pkg\_resources module. +- Updated certify truncation doctest. +- Untested changes to .travis.yaml eliminating astroconda channel and simplifying package pinning. Untested change to ./runtests return status. +- Added more ellipsis to certify invalid.asdf doctest. Added P\_GRATING as JWST pattern keyword. +- Typo +- Added astroconda back in. +- Removed astroconda from Travis CI. +- Tweak to test\_certify ellipsis +- Added lockfile as required dependency. +- Moved default lock path to /tmp if it exists. Created/updated CrdsLockFile and CrdsFakeLockFile classes, overriding acquire() and release() instead of \_\_enter\_\_() and \_\_exit\_\_(). Overhauled get\_cache\_lock() to handle various cases where locking is disabled. Added locking status to crds list --status Added --clear-locks to crds.sync, can also be used to init locks directory. +- Added CRDS\_USE\_LOCKING env var to turn off w/o readonly cache. Changed default lock filename to crds.cache.lock (dropped hidden ".") +- Created CrdsCacheLock subclass of lockfile.LockFile to add logging for acquire and release. Refined get\_cache\_lock()'s handling of: 1. lockfile import failed 2. CRDS cache is readonly 3. Lock creation failed. +- Deferred lockfile import warning until actual call to get\_cache\_lock(). +- Moved default cache lock directory to root CRDS cache config directory. Changed config approach to specify lock file paths only to support multiple locks. Added config.get\_crds\_root\_cfgpath() and config.get\_crds\_lockpath(lock\_filename). Added clear\_cache\_lock() Modified utils.remove() to support removing cache lock files. +- Updated doctests for removing REFFILE provenance +- Redefined JWST provenance keywords based on new datamodels schemas to avoid redundant META.REFFILE log output. +- Dropped locking "import" unit test. Added conda list to Travis test output. +- Doctests, thrashing obviously. +- More doctest fixes. +- Fix for crds\_cache\_locking doctest, restores prior verbosity. +- Added lockfile as a dependency for .travis.yml Added basic crds\_cache\_locking doctest, mainly to detect missing lockfile package. +- Updated version # in setup.cfg, inconsistent with setup.py since 7.1.1 Added related comment to crds/\_\_init\_\_.py Added comments about CRDS softer dependencies to setup.py +- Added CRDS\_CACHE\_LOCK env var for defining CRDS cache lock filepath. Added crds.core.crds\_cache\_locking to importable modules from crds package. Cleaned up verbose warnings for cache locking failures. +- Fixed invalid.asdf unit test. +- Added crds\_cache\_locking.py to wrap lockfile. +- Fix for unit test broken by new datasets with COS LIFE\_ADJ=4 running on contexts that did not support that. +- Trapped HST instrument directory symlink creation with a verbose warning after seeing it fail for crds sync --output=blah +- Fix for python23 StringIO management. +- Fixed reftypes unit test for new NIRISS types. +- Added JWST MIRI versions of PERSAT, TRAPDENSITY, and TRAPPARS omitted from jira-crds-114,115,116 due to no available references. +- Baseline specs for JWST NIR insturment TRAPPARS types, jira-crds-116. +- Baseline specs for new JWST NIR TRAPDENSITY type, jira-crds-115. +- Baseline specs for new NIR instrument PERSAT types. jira-crds-114. +- Added \_\_hash\_\_() to DiffTuple in selectors.py as required by Python-3 (tuple?) subclasses that also define \_\_eq\_\_(). +- Fixed invalid.asdf certify doctest new io.fits output. Removed expensive certify sync comparison test. +- Improved exception handling for mis-configured CRDS, e.g. attempting JWST ops with CRDS\_SERVER\_URL configured for HST. +- Modified checksum tool to run mapping parser to detect duplicate match cases prior to rewriting rmaps to prevent silently dropping the duplicates during the checksum update process. Duplicate cases are errors. +- Fixes for PEDIGREE, PEDIGREE column checking, additional tests. +- Baseline fix for PEDIGREE column values, needs broad testing and specific unit tests. +- Clarified diff message of Selector class to N/A. +- Abstracted out .pmap number with ellipsis in test\_or\_bars.py +- Trapped rowdiff runtime error for inconsistent hdus so header diffs still occur and web display gives gentler indication than traceback. +- Tested fix for backward/forward compatible file submission upload files info protocol change. +- Untested backward/forward compatible version of command line file submission file upload info method, broken by recent server upgrade of Django-jQyuery-file-upload package. +- Fixed doctest pmap version dependency with ellipsis in test\_or\_bars.py +- Updated valid values for JWST SUBARRAY in all\_all +- Added N/A and ANY back to NIRSPEC ALL EXP\_TYPE values. +- More info on CRDS path specification. +- Updated documentation for certify (and --help) to more explicitly describe using ./ to specify the current working directory instead of implicitly meaning "in the CRDS cache." +- Updated git hash for initial dev version 7.1.4 +- Bumped development version to 7.1.4 +- Updated 7.1.3 git hash for tagging. +- Added verbosity=90 log messages to trace how keywords are being cross-strapped via hard coded tables and JWST datamodels inferences. +- Unit test updates, added path back into log\_and\_track\_errors output +- Fixed bug in crds certify log\_and\_track\_error where simplified file specification (only basename) made it impossible to read the file to determine instrument and type. +- Removed explicit PUPIL definitions from NIRCAM ALL. +- Added a second stage of header cross strapping after noticing that the P\_ initialized versions of normal keywords were not cross strapped. Made the io.abstract cross strapping function public. Increased verbosity level for missing optional keywords, mostly noise. +- Updated unit tests for test\_certify table log message improvements. +- Improve table mode checking logging in crds.certify. Removed dead code for all columns. +- Added missing test\_config.cleanup(old\_state) to test\_certify accidentally deleted during doctest update. +- Removed test dataset from crds/tests directory to simplify diffs. +- Updated for NIRSPEC AREA tabular modes. Added is\_imaging\_mode(EXP\_TYPE) validator helper. Added unique\_rowkeys to ('SLIT\_ID', 'SLICE\_ID', 'SHUTTER\_X', 'SHUTTER\_Y', 'QUADRANT'). Switched nirspec\_area.tpn to use nirspec\_sci\_array.tpn instead of nir\_sci\_array.tpn Modified nirspec\_sci\_array.tpn to limit it to imaging modes Added table constraints to nirspec\_aray.tpn for NRS\_IFU,NRS\_MSASPEC, and NRS\_FIXEDSLIT|NRS\_BRIGHTOBJ. Updated JWST reference\_to\_dataset to ensure SUBARRAY and EXP\_TYPE are always defined, if only UNDEFINED. Added cross strapping for META.INSTRUMENT.MODULE. +- JWST certify helper function bugfix for NIRSPEC FFLAT. Update for unit test related to META.REFFILE -> META. schema refactoring. +- Updated global JWST constraints to make optional boilerplate metadata required. Updated test data as needed to include HISTORY. +- Updated \_ld version of nircam\_all.tpn +- Added JWST P\_ translation for meta.p\_subarray Commented out EXP\_TYPE constraint in nircam\_all.tpn +- Added additional schema translations to hard code some of the recent reference file schema updates, including flattening meta.reffile.xxx to meta.xxx. +- Fixed import sys error in custom\_query\_affected\_datasets\_script +- Modified query\_affected reprocessing reference/example scripts to return non-zero exit status if client or server side errors occurred. +- Fixed refactoring issue with command line file submission interpretation of django-file-upload JSON response which changed during the recent jQuery and related package updates. +- Refactored command line get\_files() method used to support @-files into get\_words() to remove the implicit assumption that every word is a filename. Updated crds.list accordingly since it was abusing get\_files() to load dataset ids. +- Modified JWST schema loader to support revised cal code schema layout that nests "type" under "anyOf". +- Fixed bug in certify .tpn value quoting for COS GSAGTAB. +- Added crds sync readonly cache info's / soft-warning. +- Added arg() convenience function to pysh for sls's. +- Changes to crds.list and dataset header fetching crds.client API. +- Updated git hash for 7.1.3 again, following test updates +- Updated test cases. Re-added the sort() for P\_ keyword application so that doctest results are deterministic. +- Updated git hash for 7.1.3 +- Bumped version to 7.1.3 for release. +- Updated valid SUBARRAY values for JWST based on cal code. +- Filtered out the import warning related to the complex CRDS \_\_init\_\_ imports. +- Fix for verbose-with-prefix missing self. +- Refactored bestrefs to add verbose\_with\_prefix() method to shave off cost of format\_prefix() for multiple verbose() per-dataset log messages. +- Updated FILETYPE definition for new COS DGEOFILE per Jira CRDS-97. +- Added a couple more test cases for P\_ pattern or-glob trailing | syntax. +- Added JSON output format to crds.list --dataset-headers to support running bestrefs and/or grepping headers one-per-line. +- Added reference\_to\_dataset translation logic and error checking for P\_ pattern keywords for JWST. HST still has no support. Simplified MIRI .tpn BAND enumerations. Updated unit tests. +- Modified crds diff (rmap code) to ignore differences in rules files that have the same checksum. Nominally this occurs in cache-to-cache differences where filepaths are different but mapping contents are the same. +- Added more bestrefs unit test coverage, fixed project specific bug with --all-instruments, improved get\_pickled\_mapping to pass pre-loaded mappings like asmapping(). +- Work on or-glob-values containing spaces for readability, particularly with respect to rmap updates and normalized tuple values. Added test\_substitutions module trying to increase test coverage. +- Baseline refactoring of core CRDS and certifier to support spaces in or-bared match patterns for readability. Updated unit tests for revised Tpn output. Added a test case for or-barred syntax that fails until JWST is updated. Re-ordered application of JWST data models open so that more basic certify checks run first. Rmap updates need more review and consideration: matching with readability spaces, and rmap updates with same. +- Updated selectors del\_match\_parameter to handle singleton non-tuple parameter deletions. +- Unplugged JWST schema scraping for certify enumerations since it is in flux and doesn't work yet with the new reference file specific schema. The data models open check should work now. Updated unit tests. Added unit tests for dm\_to\_fits() and fits\_to\_dm() +- Modified certify --dump-provenance to skip keytypes that are not H, i.e. header keywords. Modified JWST keytype=H expression .tpn constraints to keytype=X to avoid dump of UNDEFINED expression labels. pylinted cmdline.py, updated unit tests for above. +- Added ANY,N/A to CUBEPAR .tpns +- Updated git hash and rationale for 7.1.2 +- Updated ACS CTE .tpn due to delay in delivery. +- Updated additional .tpn files for COS LIFE\_ADJ=4 +- Modified client proxy verbose mode to show RPC results for simple results like strings, numbers, etc. +- Added generic capability to expand symbolic spec for a type such as jwst-all-photom-operational into the symbolic types for each non-system instrument. This is useful for re-running the certifier on a type across all instruments. +- Modified JWST certify handling of PHOTOM based on discussions in #513. +- Changed setup.py "provides" to just "crds" after PyPi upload failed. +- Relaxed certify condition on NIRSPEC SATURATION for SCI\_ARRAY type is INT to FLOAT or INT. Extended has\_type helper function to support list of types. +- Updated HST combined specs for ACS SNKCFILE. +- Added requirement DETECTOR=WFC to ACS SNKCFILE rmap\_relevance, otherwise N/A. +- Adjusted reftypes set combination from difference to intersection. +- Added certify reftypes unit tests, corrected tpn text dumps. +- Commented out dev/test code in certify/mapping\_parser.py to prevent spoofing coverage results. +- First stepping stone to limiting type determination to those contained in the context in use. +- Removed unique\_rows checks from ACS, WFC3 PCTETAB after discussion on Jira CRDS-103. +- Updated doctest for data models check due to change in output format. +- Updated specs and .tpns for MIRI,NIRSPEC CUBEPAR for Jira-CRDS-109, 110 +- Updated ACS PCTETAB spec and tpns based on new format inputs from David Borncamp on Jira CRDS-103. +- Modified format constraints for WFC3 and ACS CTE references based on existing WFC3 and example ACS CTE file from David Borncamp. Removed unique rows check for ACS PCTETAB since columns changed and new unique parameters are still undefined. +- Optimized verbose output in validators.py, mainly for column checks. +- Bumped development version to 7.1.2 + +# Additional software included in this update + +* None diff --git a/hstdp/2018.1/README.md b/hstdp/2018.1/README.md new file mode 100644 index 0000000..a65023a --- /dev/null +++ b/hstdp/2018.1/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2018.1 --file http://ssb.stsci.edu/releases/hstdp/2018.1/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2018.1 --file http://ssb.stsci.edu/releases/hstdp/2018.1/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh +$ bash Anaconda3-4.3.1-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.11-Linux-x86_64.sh +$ bash Miniconda3-4.3.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2018.1 --file http://ssb.stsci.edu/releases/hstdp/2018.1/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2018.1 +``` diff --git a/hstdp/2018.1/dev/hstdp-2018.1-linux-py35.00.txt b/hstdp/2018.1/dev/hstdp-2018.1-linux-py35.00.txt new file mode 100644 index 0000000..13dbb6a --- /dev/null +++ b/hstdp/2018.1/dev/hstdp-2018.1-linux-py35.00.txt @@ -0,0 +1,156 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.9.dev15+gc90fd2b-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py35h6fb19ab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.0.dev9571+gbc14e38-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.4.dev0+gaf84051-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.4-py35h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.2-py35hbe86bc5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.7.dev103+g91e32b0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.1.4-py35hbeb2da1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.27.3-py35h6cdc64b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.12.2-hd3e2b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.21.dev0+g2994330-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35h51e6c10_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.0.0rc2.dev1+g6ad0c0b-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.2.0-py35hd0a6de2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35hf008fae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.2.1-py35hd850d2a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.1.1-py35hf71bdeb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.1.2-py35h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.1-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev1+g3d831ef-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.14.0-py35h3dfced4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.7.0-py35he089a57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35h2c86149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.22.0-py35hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.1.1-py35h1b200a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.0.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35h7e7da9d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.2-py35hfe8c5ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.7-py35h6aefbb0_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.8.dev2+ge827038-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.4-h417fded_24.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py35h90d5b31_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.3-py35hb13c558_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev2+g9f6891e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.0.0-py35hcbbe4a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35h2ec4104_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.6.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py35hcb7efd2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py35h3537809_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev15+gcacbff1-py35_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.1a.dev4+ga88c03e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/typing-3.6.2-py35hcadae7e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev2+gba71096-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.30.0-py35hd3883cf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/hstdp/2018.1/dev/hstdp-2018.1-linux-py35.01.txt b/hstdp/2018.1/dev/hstdp-2018.1-linux-py35.01.txt new file mode 100644 index 0000000..54702ab --- /dev/null +++ b/hstdp/2018.1/dev/hstdp-2018.1-linux-py35.01.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.9.dev15+gc90fd2b-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py35h6fb19ab_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.4.dev0+gaf84051-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.4-py35h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.2-py35hbe86bc5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.1.4-py35hbeb2da1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.12.2-hd3e2b69_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.21-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35h51e6c10_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.0.0rc3.dev0+gce7fe09-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.2.0-py35hd0a6de2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py35hf008fae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.1.1-py35hf71bdeb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.1.2-py35h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.1-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.14.0-py35h3dfced4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.7.0-py35he089a57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.22.0-py35hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.0.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35h7e7da9d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.3-py35h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.2-py35hfe8c5ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.7-py35h6aefbb0_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.4-h417fded_24.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py35h90d5b31_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.3-py35hb13c558_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.0.0-py35hcbbe4a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.6.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py35hcb7efd2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py35h3537809_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/typing-3.6.2-py35hcadae7e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.30.0-py35hd3883cf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/hstdp/2018.1/dev/hstdp-2018.1-linux-py36.00.txt b/hstdp/2018.1/dev/hstdp-2018.1-linux-py36.00.txt new file mode 100644 index 0000000..8320ca6 --- /dev/null +++ b/hstdp/2018.1/dev/hstdp-2018.1-linux-py36.00.txt @@ -0,0 +1,156 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.9.dev15+gc90fd2b-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py36h306e16b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.0.dev9571+gbc14e38-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-17.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36h49b8c8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.4.dev0+gaf84051-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.1.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.4-py36h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.2-py36h84cdd9c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.7.dev103+g91e32b0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.1.4-py36hd09be54_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.27.3-py36h1860423_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12.post1.dev1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.12.2-hd3e2b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.20.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36hb0f60f5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.21.dev0+g2994330-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.1-py36h3585f63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36h79797d7_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.0.0rc2.dev1+g6ad0c0b-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.2.0-py36he555465_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py36h52d8127_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.2.1-py36h88c514a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36hb52b0d5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.11.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36ha16c418_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.1.1-py36hf71bdeb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.1.2-py36h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36hfeacd6b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.1-py36h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev1+g3d831ef-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36hcdf7029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.14.0-py36h3dfced4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.7.0-py36h18f165f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py36h79f9f78_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.22.0-py36hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.1.1-py36h35f843b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36h63277f8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.0.0-py36h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36h6c6f9ce_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py36hb689045_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36h17d85b1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.3-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36h69acd42_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.2-py36h29bf505_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36h0d3125c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-17.5.0-py36h20ba746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36h0386399_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.7-py36hd97a5b1_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.8.dev2+ge827038-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.4-hc3d631a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36h88d3b88_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.3-py36h63b9c63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pywcs-1.12.1.dev0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4.dev2+g9f6891e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.0.0-py36hbf646e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-38.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36h2cb9092_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18.1-py36h51ed4ed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36h372c433_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36h6febd40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.6.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36h6d0f590_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py36hb5cb234_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-0.0.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev15+gcacbff1-py36_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.1a.dev4+ga88c03e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36h674d592_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/typing-3.6.2-py36h7da032a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36hdf4376a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3.dev2+gba71096-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.30.0-py36hfd4bba0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/hstdp/2018.1/dev/hstdp-2018.1-linux-py36.01.txt b/hstdp/2018.1/dev/hstdp-2018.1-linux-py36.01.txt new file mode 100644 index 0000000..45ef7b7 --- /dev/null +++ b/hstdp/2018.1/dev/hstdp-2018.1-linux-py36.01.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.9.dev15+gc90fd2b-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py36h306e16b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.3-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-17.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.4.dev0+gaf84051-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.1.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.4-py36h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.1.4-py36hd09be54_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.12.2-hd3e2b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.20.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36hb0f60f5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.21-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36h79797d7_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.0.0rc3.dev0+gce7fe09-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.2.0-py36he555465_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-0.7.1-py36h52d8127_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36ha16c418_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.1.1-py36hf71bdeb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.1.2-py36h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.1-py36h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36hcdf7029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.14.0-py36h3dfced4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.7.0-py36h18f165f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.22.0-py36hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.0.0-py36h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36h6c6f9ce_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py36hb689045_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.3-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.2-py36h29bf505_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36h0d3125c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-17.5.0-py36h20ba746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36h0386399_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.7-py36hd97a5b1_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.8.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.4-hc3d631a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36h88d3b88_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.3-py36h63b9c63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.0.0-py36hbf646e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-38.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18.1-py36h51ed4ed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36h372c433_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36h6febd40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.6.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36h6d0f590_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py36hb5cb234_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/typing-3.6.2-py36h7da032a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.30.0-py36hfd4bba0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/hstdp/2018.1/dev/hstdp-2018.1-osx-py35.00.txt b/hstdp/2018.1/dev/hstdp-2018.1-osx-py35.00.txt new file mode 100644 index 0000000..f9e7efd --- /dev/null +++ b/hstdp/2018.1/dev/hstdp-2018.1-osx-py35.00.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.9.dev15+gc90fd2b-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py35hb692fe1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.0.dev9571+gbc14e38-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.4.dev0+gaf84051-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.4-py35h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.2-py35h61e9bcc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.7.dev103+g91e32b0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.1.4-py35hbbb57dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.27.3-py35h36d65b6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py35hb13dbd9_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.21.dev0+g2994330-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35h86051b3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.0.0rc2.dev1+g6ad0c0b-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.2.0-py35h805106e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35h1ad78fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.2.1-py35h9470683_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.1.1-py35hef8c89e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.1.2-py35h6d6146d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.1-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev1+g3d831ef-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35h9ce1e3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.14.0-py35h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.7.0-py35h296b98c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35h1f523c6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.22.0-py35h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.1.1-py35hbda7c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.0.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35h33ce766_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.2-py35h4d4d87d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.7-py35h3cfcbe1_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.8.dev2+ge827038-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.4-he720263_23.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py35h10515e0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.3-py35heeb7564_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev2+g9f6891e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35h0a3d746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35hbb7be01_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.6.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py35h3eabf46_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py35hcb4ca16_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev15+gcacbff1-py35_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.1a.dev4+ga88c03e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/typing-3.6.2-py35ha402c5e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev2+gba71096-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/hstdp/2018.1/dev/hstdp-2018.1-osx-py35.01.txt b/hstdp/2018.1/dev/hstdp-2018.1-osx-py35.01.txt new file mode 100644 index 0000000..18c705a --- /dev/null +++ b/hstdp/2018.1/dev/hstdp-2018.1-osx-py35.01.txt @@ -0,0 +1,133 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.9.dev15+gc90fd2b-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py35hb692fe1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.4.dev0+gaf84051-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.4-py35h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.1.4-py35hbbb57dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.16.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py35hb13dbd9_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.21-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35h86051b3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.0.0rc3.dev0+gce7fe09-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.2.0-py35h805106e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py35h1ad78fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.1.1-py35hef8c89e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.1.2-py35h6d6146d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.1-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.0-py35hb193ae4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35h9ce1e3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.14.0-py35h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.7.0-py35h296b98c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.22.0-py35h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.0.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35h33ce766_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.3-py35h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.2-py35h4d4d87d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.7-py35h3cfcbe1_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.4-he720263_23.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py35h10515e0_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.3-py35heeb7564_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35hbb7be01_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.6.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py35h3eabf46_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py35hcb4ca16_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/typing-3.6.2-py35ha402c5e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/hstdp/2018.1/dev/hstdp-2018.1-osx-py36.00.txt b/hstdp/2018.1/dev/hstdp-2018.1-osx-py36.00.txt new file mode 100644 index 0000000..62c9480 --- /dev/null +++ b/hstdp/2018.1/dev/hstdp-2018.1-osx-py36.00.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.9.dev15+gc90fd2b-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py36h174008c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.0.dev9571+gbc14e38-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-17.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36h72d3c9f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.4.dev0+gaf84051-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.1.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.4-py36h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.2-py36h379c7bd_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.7.dev103+g91e32b0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.1.4-py36h842514c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.27.3-py36h6ecb376_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12.post1.dev1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.20.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.21.dev0+g2994330-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.1-py36h39cdac5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36h27a9ac6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.0.0rc2.dev1+g6ad0c0b-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.2.0-py36h5e01289_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py36h3495948_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.2.1-py36h3dda519_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.11.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.1.1-py36hef8c89e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.1.2-py36h6d6146d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36hf1b8295_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.1-py36h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev1+g3d831ef-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36h73fae2b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.14.0-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.7.0-py36he54d08e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py36ha08bf50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.22.0-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.1.1-py36hc90e01c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.0.0-py36hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36h1555ced_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.3-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36he6521c3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.2-py36ha69170d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-17.5.0-py36h51e4350_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.7-py36hfa33cec_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.8.dev2+ge827038-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.4-hc167b69_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36h86d2abb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.3-py36hf0bf824_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pywcs-1.12.1.dev0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4.dev2+g9f6891e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.0.0-py36h1de22e9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-38.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36he5b5b09_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-1.5.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.6.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36h9364dc8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py36h92f4a7a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-0.0.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev15+gcacbff1-py36_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.1a.dev4+ga88c03e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/typing-3.6.2-py36haa2d9ef_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3.dev2+gba71096-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.30.0-py36h5eb2c71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/hstdp/2018.1/dev/hstdp-2018.1-osx-py36.01.txt b/hstdp/2018.1/dev/hstdp-2018.1-osx-py36.01.txt new file mode 100644 index 0000000..143010b --- /dev/null +++ b/hstdp/2018.1/dev/hstdp-2018.1-osx-py36.01.txt @@ -0,0 +1,133 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.9.dev15+gc90fd2b-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py36h174008c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.3-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-17.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.4.dev0+gaf84051-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.1.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.4-py36h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.1.4-py36h842514c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.20.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.21-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36h27a9ac6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.0.0rc3.dev0+gce7fe09-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.2.0-py36h5e01289_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-0.7.1-py36h3495948_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.1.1-py36hef8c89e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.1.2-py36h6d6146d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.1-py36h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36h73fae2b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.14.0-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.7.0-py36he54d08e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.22.0-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.0.0-py36hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36h1555ced_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.3-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.2-py36ha69170d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-17.5.0-py36h51e4350_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.7-py36hfa33cec_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.8.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.4-hc167b69_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36h86d2abb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.3-py36hf0bf824_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.0.0-py36h1de22e9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-38.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-1.5.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.6.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36h9364dc8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py36h92f4a7a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/typing-3.6.2-py36haa2d9ef_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.30.0-py36h5eb2c71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/hstdp/2018.1/hstdp-2018.1-linux-py35.final.txt b/hstdp/2018.1/hstdp-2018.1-linux-py35.final.txt new file mode 100644 index 0000000..cf566ab --- /dev/null +++ b/hstdp/2018.1/hstdp-2018.1-linux-py35.final.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/acstools-2.0.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/alabaster-0.7.10-py35h6fb19ab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/astropy-2.0.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/calcos-3.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cffi-1.11.4-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cloudpickle-0.5.2-py35hbe86bc5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/crds-7.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cryptography-2.1.4-py35hbeb2da1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/dask-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/dask-core-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/dbus-1.12.2-hd3e2b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/drizzlepac-2.1.21-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/heapdict-1.0.0-py35h51e6c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/hstcal-2.0.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/imageio-2.2.0-py35hd0a6de2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/imagesize-0.7.1-py35hf008fae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/lxml-4.1.1-py35hf71bdeb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/matplotlib-2.1.2-py35h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/msgpack-python-0.5.1-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/numpy-1.14.0-py35h3dfced4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/numpydoc-0.7.0-py35he089a57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pandas-0.22.0-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pillow-5.0.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pip-9.0.1-py35h7e7da9d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/psutil-5.4.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/py-1.5.2-py35hfe8c5ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pysocks-1.6.7-py35h6aefbb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/pysynphot-0.9.8.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/python-3.5.4-h417fded_24.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/python-dateutil-2.6.1-py35h90d5b31_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pytz-2017.3-py35hb13c558_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/scipy-1.0.0-py35hcbbe4a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sphinx-1.6.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sphinxcontrib-1.0-py35hcb7efd2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sphinxcontrib-websupport-1.0.1-py35h3537809_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci-hst-3.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.skypac-0.9.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stwcs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/typing-3.6.2-py35hcadae7e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/wheel-0.30.0-py35hd3883cf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.1/hstdp-2018.1-linux-py36.final.txt b/hstdp/2018.1/hstdp-2018.1-linux-py36.final.txt new file mode 100644 index 0000000..b57dc89 --- /dev/null +++ b/hstdp/2018.1/hstdp-2018.1-linux-py36.final.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/acstools-2.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/alabaster-0.7.10-py36h306e16b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/astropy-2.0.3-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/attrs-17.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/babel-2.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/calcos-3.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/certifi-2018.1.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cffi-1.11.4-py36h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cloudpickle-0.5.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/costools-1.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/crds-7.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cryptography-2.1.4-py36hd09be54_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/dask-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/dask-core-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/dbus-1.12.2-hd3e2b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/decorator-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/distributed-1.20.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/docutils-0.14-py36hb0f60f5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/drizzlepac-2.1.21-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/fitsblender-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/heapdict-1.0.0-py36h79797d7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/hstcal-2.0.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/imageio-2.2.0-py36he555465_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/imagesize-0.7.1-py36h52d8127_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/jinja2-2.10-py36ha16c418_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/lxml-4.1.1-py36hf71bdeb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/matplotlib-2.1.2-py36h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/msgpack-python-0.5.1-py36h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/nose-1.3.7-py36hcdf7029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/numpy-1.14.0-py36h3dfced4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/numpydoc-0.7.0-py36h18f165f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pandas-0.22.0-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pillow-5.0.0-py36h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pip-9.0.1-py36h6c6f9ce_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pluggy-0.6.0-py36hb689045_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/psutil-5.4.3-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/py-1.5.2-py36h29bf505_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pygments-2.2.0-py36h0d3125c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyopenssl-17.5.0-py36h20ba746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyqt-5.6.0-py36h0386399_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/pyregion-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pysocks-1.6.7-py36hd97a5b1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/pysynphot-0.9.8.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pytest-3.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/python-3.6.4-hc3d631a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/python-dateutil-2.6.1-py36h88d3b88_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pytz-2017.3-py36h63b9c63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/scikit-image-0.13.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/scipy-1.0.0-py36hbf646e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/setuptools-38.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sip-4.18.1-py36h51ed4ed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/six-1.11.0-py36h372c433_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/snowballstemmer-1.2.1-py36h6febd40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sortedcontainers-1.5.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sphinx-1.6.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sphinxcontrib-1.0-py36h6d0f590_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sphinxcontrib-websupport-1.0.1-py36hb5cb234_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stistools-1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci-hst-3.0.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.image-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.skypac-0.9.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.tools-3.4.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stwcs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/tornado-4.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/typing-3.6.2-py36h7da032a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/wfc3tools-1.3.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/wheel-0.30.0-py36hfd4bba0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.1/hstdp-2018.1-osx-py35.final.txt b/hstdp/2018.1/hstdp-2018.1-osx-py35.final.txt new file mode 100644 index 0000000..95bbebe --- /dev/null +++ b/hstdp/2018.1/hstdp-2018.1-osx-py35.final.txt @@ -0,0 +1,133 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/acstools-2.0.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/alabaster-0.7.10-py35hb692fe1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/astropy-2.0.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/calcos-3.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cffi-1.11.4-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/crds-7.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cryptography-2.1.4-py35hbbb57dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/dask-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/dask-core-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/docutils-0.14-py35hb13dbd9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/drizzlepac-2.1.21-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/heapdict-1.0.0-py35h86051b3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/hstcal-2.0.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/imageio-2.2.0-py35h805106e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/imagesize-0.7.1-py35h1ad78fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/lxml-4.1.1-py35hef8c89e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/matplotlib-2.1.2-py35h6d6146d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/msgpack-python-0.5.1-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/networkx-2.0-py35hb193ae4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/nose-1.3.7-py35h9ce1e3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/numpy-1.14.0-py35h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/numpydoc-0.7.0-py35h296b98c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pandas-0.22.0-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pillow-5.0.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pip-9.0.1-py35h33ce766_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/psutil-5.4.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/py-1.5.2-py35h4d4d87d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pysocks-1.6.7-py35h3cfcbe1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/pysynphot-0.9.8.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/python-3.5.4-he720263_23.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/python-dateutil-2.6.1-py35h10515e0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pytz-2017.3-py35heeb7564_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/snowballstemmer-1.2.1-py35hbb7be01_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sphinx-1.6.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sphinxcontrib-1.0-py35h3eabf46_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sphinxcontrib-websupport-1.0.1-py35hcb4ca16_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci-hst-3.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.skypac-0.9.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stwcs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/typing-3.6.2-py35ha402c5e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.1/hstdp-2018.1-osx-py36.final.txt b/hstdp/2018.1/hstdp-2018.1-osx-py36.final.txt new file mode 100644 index 0000000..df724e5 --- /dev/null +++ b/hstdp/2018.1/hstdp-2018.1-osx-py36.final.txt @@ -0,0 +1,133 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/acstools-2.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/alabaster-0.7.10-py36h174008c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/astropy-2.0.3-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/attrs-17.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/babel-2.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/calcos-3.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/certifi-2018.1.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cffi-1.11.4-py36h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cloudpickle-0.5.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/costools-1.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/crds-7.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cryptography-2.1.4-py36h842514c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/dask-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/dask-core-0.16.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/decorator-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/distributed-1.20.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/drizzlepac-2.1.21-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/fitsblender-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/heapdict-1.0.0-py36h27a9ac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/hstcal-2.0.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/imageio-2.2.0-py36h5e01289_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/imagesize-0.7.1-py36h3495948_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/lxml-4.1.1-py36hef8c89e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/matplotlib-2.1.2-py36h6d6146d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/msgpack-python-0.5.1-py36h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/nictools-1.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/nose-1.3.7-py36h73fae2b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/numpy-1.14.0-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/numpydoc-0.7.0-py36he54d08e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pandas-0.22.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pillow-5.0.0-py36hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pip-9.0.1-py36h1555ced_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/psutil-5.4.3-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/py-1.5.2-py36ha69170d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pyopenssl-17.5.0-py36h51e4350_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/pyregion-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pysocks-1.6.7-py36hfa33cec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/pysynphot-0.9.8.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pytest-3.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/python-3.6.4-hc167b69_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/python-dateutil-2.6.1-py36h86d2abb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/pytools-2016.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pytz-2017.3-py36hf0bf824_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/reftools-1.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/scikit-image-0.13.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/scipy-1.0.0-py36h1de22e9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/setuptools-38.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sortedcontainers-1.5.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sphinx-1.6.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sphinxcontrib-1.0-py36h9364dc8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sphinxcontrib-websupport-1.0.1-py36h92f4a7a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stistools-1.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci-hst-3.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.convolve-2.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.distutils-0.3.8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.image-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.imagemanip-1.1.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.imagestats-1.4.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.ndimage-0.10.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.numdisplay-1.6.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.skypac-0.9.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.sphinxext-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.stimage-0.2.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.tools-3.4.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stwcs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/tornado-4.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/typing-3.6.2-py36haa2d9ef_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/wfc3tools-1.3.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/wfpc2tools-1.0.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/wheel-0.30.0-py36h5eb2c71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.1/latest-linux b/hstdp/2018.1/latest-linux new file mode 100644 index 0000000..cf566ab --- /dev/null +++ b/hstdp/2018.1/latest-linux @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/acstools-2.0.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/alabaster-0.7.10-py35h6fb19ab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/astropy-2.0.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/calcos-3.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cffi-1.11.4-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cloudpickle-0.5.2-py35hbe86bc5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/crds-7.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cryptography-2.1.4-py35hbeb2da1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/dask-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/dask-core-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/dbus-1.12.2-hd3e2b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/drizzlepac-2.1.21-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/heapdict-1.0.0-py35h51e6c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/hstcal-2.0.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/imageio-2.2.0-py35hd0a6de2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/imagesize-0.7.1-py35hf008fae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/lxml-4.1.1-py35hf71bdeb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/matplotlib-2.1.2-py35h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/msgpack-python-0.5.1-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/numpy-1.14.0-py35h3dfced4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/numpydoc-0.7.0-py35he089a57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pandas-0.22.0-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pillow-5.0.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pip-9.0.1-py35h7e7da9d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/psutil-5.4.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/py-1.5.2-py35hfe8c5ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pysocks-1.6.7-py35h6aefbb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/pysynphot-0.9.8.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/python-3.5.4-h417fded_24.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/python-dateutil-2.6.1-py35h90d5b31_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pytz-2017.3-py35hb13c558_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/scipy-1.0.0-py35hcbbe4a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sphinx-1.6.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sphinxcontrib-1.0-py35hcb7efd2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sphinxcontrib-websupport-1.0.1-py35h3537809_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci-hst-3.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.skypac-0.9.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/stwcs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/typing-3.6.2-py35hcadae7e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/linux-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/wheel-0.30.0-py35hd3883cf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.1/latest-osx b/hstdp/2018.1/latest-osx new file mode 100644 index 0000000..95bbebe --- /dev/null +++ b/hstdp/2018.1/latest-osx @@ -0,0 +1,133 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/acstools-2.0.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/alabaster-0.7.10-py35hb692fe1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/astropy-2.0.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/calcos-3.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cffi-1.11.4-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/costools-1.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/crds-7.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cryptography-2.1.4-py35hbbb57dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/dask-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/dask-core-0.16.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/docutils-0.14-py35hb13dbd9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/drizzlepac-2.1.21-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/fitsblender-0.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/heapdict-1.0.0-py35h86051b3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/hstcal-2.0.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/imageio-2.2.0-py35h805106e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/imagesize-0.7.1-py35h1ad78fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/lxml-4.1.1-py35hef8c89e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/matplotlib-2.1.2-py35h6d6146d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/msgpack-python-0.5.1-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/networkx-2.0-py35hb193ae4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/nictools-1.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/nose-1.3.7-py35h9ce1e3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/numpy-1.14.0-py35h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/numpydoc-0.7.0-py35h296b98c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pandas-0.22.0-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pillow-5.0.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pip-9.0.1-py35h33ce766_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/psutil-5.4.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/py-1.5.2-py35h4d4d87d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/pyregion-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pysocks-1.6.7-py35h3cfcbe1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/pysynphot-0.9.8.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/python-3.5.4-he720263_23.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/python-dateutil-2.6.1-py35h10515e0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/pytools-2016.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pytz-2017.3-py35heeb7564_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/reftools-1.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/snowballstemmer-1.2.1-py35hbb7be01_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sphinx-1.6.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sphinxcontrib-1.0-py35h3eabf46_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sphinxcontrib-websupport-1.0.1-py35hcb4ca16_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stistools-1.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci-hst-3.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.convolve-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.distutils-0.3.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.image-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.imagemanip-1.1.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.imagestats-1.4.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.ndimage-0.10.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.numdisplay-1.6.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.skypac-0.9.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.stimage-0.2.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stsci.tools-3.4.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/stwcs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/typing-3.6.2-py35ha402c5e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/wfc3tools-1.3.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/astroconda/osx-64/wfpc2tools-1.0.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.1/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.1/release_notes.md b/hstdp/2018.1/release_notes.md new file mode 100644 index 0000000..7db9be1 --- /dev/null +++ b/hstdp/2018.1/release_notes.md @@ -0,0 +1,5 @@ +# Release Notes + +* 2018/01/30 - Iteration 0 (This is an all-development snapshot.) +* 2018/02/06 - Iteration 1 +* 2018/02/22 - Final diff --git a/hstdp/2018.1/software_updates.md b/hstdp/2018.1/software_updates.md new file mode 100644 index 0000000..799a715 --- /dev/null +++ b/hstdp/2018.1/software_updates.md @@ -0,0 +1,55 @@ +# HSTCAL Version 2.0.0rc3 + +The following updates, specified in separate sections for each instrument, have been included with this release. This release is presented as [HSTDP-2018.1 milestones](https://github.com/spacetelescope/hstcal/milestone/6). + + + +## HSTCAL package updates +- The separate trailer file support routines used by ACS, WFC3, and STIS were consolidated into a single file, and are now part of libhstcallib.a. + +## HSTIO +[HSTDP-2018.1 Milestones](https://github.com/spacetelescope/hstcal/issues?utf8=%E2%9C%93&q=label%3Ahstio+milestone%3AHSTDP-2018.1+) +- Improvements in robustness and maintainability have been made to the infrastructure software (HSTIO) and libraries which are the foundation for the pipelines. + + +## ACS +[HSTDP-2018.1 Milestones](https://github.com/spacetelescope/hstcal/issues?utf8=%E2%9C%93&q=label%3AACS+milestone%3AHSTDP-2018.1+), [Data Changes](https://github.com/spacetelescope/hstcal/pulls?utf8=%E2%9C%93&q=is%3Apr+is%3Aclosed+label%3Aacs+label%3Achanges-data+milestone%3AHSTDP-2018.1+) + +- CALACS updates to Version 10.0.0 due to the modifications imposed by the upgraded ACSREJ algorithm. +- An updated ACSREJ algorithm was implemented where all calculations are now done in electrons versus DN. The threshold computation uses the ERR arrays to account for post-flash noise [PR#2](https://github.com/spacetelescope/hstcal/pull/2). +- CALACS now uses the amp-dependent read noise as the threshold to determine if a pixel has enough signal-to-noise ratio such that a reasonable correction can be applied [PR#258](https://github.com/spacetelescope/hstcal/pull/258). +- A bug fix has been implemented which is only applicable for RAWs with PCTECORR=PERFORM for ASNs used for cosmic ray rejection. In this case the CR rejected output (CRJ) previously used the wrong dark; it used the CTE-corrected dark. This has been addressed, and the CRJ product is now correct utilizing the non-CTE corrected dark [PR#273](https://github.com/spacetelescope/hstcal/pull/273). +- All BIAS files are now processed by CALACS to use only read noise (vs Poisson) for the computation of the ERR array as the date discriminant (pre- and post-SM4) has been removed [PR#288](https://github.com/spacetelescope/hstcal/pull/288). +- The C interface to the ACSREJ standalone component of CALACS was modified for clarity. The "newbias" option was renamed "readnoise_only". The functionality associated with this option remains the same. + +- [x] Affects old data +- [x] Users should re-retrieve affected datasets from the archive +- [x] Updated reference files delivered by science team + +## STIS +[HSTDP-2018.1 Milestones](https://github.com/spacetelescope/hstcal/issues?utf8=%E2%9C%93&q=label%3ASTIS+milestone%3AHSTDP-2018.1+) + +- calstis version 3.4.2 +- Bugs were addressed: memory leak, added --help option, ensure printing of syntax usage when necessary + +- [ ] Affects old data +- [ ] Users should re-retrieve affected datasets from the archive +- [ ] Updated reference files delivered by science team + + +## WFC3 +[HSTDP-2018.1 Milestones](https://github.com/spacetelescope/hstcal/issues?utf8=%E2%9C%93&q=label%3AWFC3+milestone%3AHSTDP-2018.1+) + +- CALWF3 updates to Version 3.4.2 for this release. +- A number of code robustness improvements (address memory leaks, fix detected bugs) were implemented. + +- [ ] Affects old data +- [ ] Users should re-retrieve affected datasets from the archive +- [ ] Updated reference files delivered by science team + +# Additional software included in this update +- drizzlepac 2.1.21 +- stwcs 1.4.0 +- calcos 3.3.4 +- acstools 2.0.10 + diff --git a/hstdp/2018.3/README.md b/hstdp/2018.3/README.md new file mode 100644 index 0000000..bca10e8 --- /dev/null +++ b/hstdp/2018.3/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2018.3 --file http://ssb.stsci.edu/releases/hstdp/2018.3/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2018.3 --file http://ssb.stsci.edu/releases/hstdp/2018.3/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh +$ bash Anaconda3-5.2.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh +$ bash Miniconda3-4.5.4-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2018.3 --file http://ssb.stsci.edu/releases/hstdp/2018.3/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2018.3 +``` diff --git a/hstdp/2018.3/dev/hstdp-2018.3-linux-py35.00.txt b/hstdp/2018.3/dev/hstdp-2018.3-linux-py35.00.txt new file mode 100644 index 0000000..5a1b69c --- /dev/null +++ b/hstdp/2018.3/dev/hstdp-2018.3-linux-py35.00.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.1.0rc2.dev0+g670d8b5-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-vectors-2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.18.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.4-py35hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.0-py35h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.6-py35h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h52aff34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py35hcb7efd2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3-py35hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.7.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.3-py35hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.0-py35h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.4-py35h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev0+gddeb071-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.5.dev0+gefa71b1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.1.0.dev0+g9f7fe0f-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev2+g22b7718-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.15-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.2.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py35_0.tar.bz2 diff --git a/hstdp/2018.3/dev/hstdp-2018.3-linux-py35.01.txt b/hstdp/2018.3/dev/hstdp-2018.3-linux-py35.01.txt new file mode 100644 index 0000000..23bc47e --- /dev/null +++ b/hstdp/2018.3/dev/hstdp-2018.3-linux-py35.01.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-vectors-2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.18.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.4-py35hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.0-py35h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.6-py35h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h52aff34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py35hcb7efd2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3-py35hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.7.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.3-py35hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.0-py35h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.4-py35h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev0+gddeb071-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.5.dev0+gefa71b1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.1.0.dev0+g9f7fe0f-py35_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev2+g22b7718-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.15-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.2.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py35_0.tar.bz2 diff --git a/hstdp/2018.3/dev/hstdp-2018.3-linux-py36.00.txt b/hstdp/2018.3/dev/hstdp-2018.3-linux-py36.00.txt new file mode 100644 index 0000000..3898a79 --- /dev/null +++ b/hstdp/2018.3/dev/hstdp-2018.3-linux-py36.00.txt @@ -0,0 +1,143 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.1.0rc2.dev0+g670d8b5-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-vectors-2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.4-py36hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.0-py36h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.6-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h52aff34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py36heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h22d08a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3-py36hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py36hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.7.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.3-py36hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.0-py36h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36h035aef0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hc49cb51_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.4-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev0+gddeb071-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.5.dev0+gefa71b1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.1.0.dev0+g9f7fe0f-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev2+g22b7718-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2018.3/dev/hstdp-2018.3-linux-py36.01.txt b/hstdp/2018.3/dev/hstdp-2018.3-linux-py36.01.txt new file mode 100644 index 0000000..26c3134 --- /dev/null +++ b/hstdp/2018.3/dev/hstdp-2018.3-linux-py36.01.txt @@ -0,0 +1,143 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-vectors-2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.4-py36hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.0-py36h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.6-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h52aff34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py36heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h22d08a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3-py36hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py36hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.7.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.3-py36hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.0-py36h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36h035aef0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hc49cb51_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.4-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev0+gddeb071-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.5.dev0+gefa71b1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.1.0.dev0+g9f7fe0f-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5rc1.dev2+g22b7718-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2018.3/dev/hstdp-2018.3-osx-py35.00.txt b/hstdp/2018.3/dev/hstdp-2018.3-osx-py35.00.txt new file mode 100644 index 0000000..e9b69e3 --- /dev/null +++ b/hstdp/2018.3/dev/hstdp-2018.3-osx-py35.00.txt @@ -0,0 +1,133 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/osx-64/hstcal-2.1.0rc2.dev0+g670d8b5-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/alabaster-0.7.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/certifi-2018.8.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cryptography-vectors-2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/dask-core-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/docutils-0.14-py35hb13dbd9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/filelock-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/imagesize-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/lxml-4.2.4-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/numpy-base-1.15.0-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pluggy-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/psutil-5.4.6-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/py-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/snowballstemmer-1.2.1-py35hbb7be01_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/sphinxcontrib-1.0-py35h3eabf46_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/tornado-5.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/babel-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/networkx-2.0-py35hb193ae4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pillow-5.2.0-py35hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/setuptools-40.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/sphinxcontrib-websupport-1.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cryptography-2.3-py35hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cython-0.28.5-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/nose-1.3.7-py35h9ce1e3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-3.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/sphinx-1.7.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/numpydoc-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/matplotlib-2.2.3-py35h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/mkl_fft-1.0.4-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/numpy-1.15.0-py35h648b28d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-arraydiff-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.convolve-2.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.distutils-0.3.8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.imagestats-1.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.stimage-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/astropy-3.0.4-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/osx-64/crds-7.2.5.dev0+gddeb071-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/pysynphot-0.9.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/osx-64/reftools-1.7.5.dev0+gefa71b1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/spherical-geometry-1.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stregion-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.ndimage-0.10.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.tools-3.4.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/osx-64/acstools-2.1.0.dev0+g9f7fe0f-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/calcos-3.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/fitsblender-0.3.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/nictools-1.1.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stistools-1.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.image-2.3.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.imagemanip-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.numdisplay-1.6.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stwcs-1.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/osx-64/wfc3tools-1.3.5rc1.dev2+g22b7718-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/wfpc2tools-1.0.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/costools-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.skypac-0.9.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/drizzlepac-2.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci-hst-3.0.3-py35_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3/dev/hstdp-2018.3-osx-py36.00.txt b/hstdp/2018.3/dev/hstdp-2018.3-osx-py36.00.txt new file mode 100644 index 0000000..8e88201 --- /dev/null +++ b/hstdp/2018.3/dev/hstdp-2018.3-osx-py36.00.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.1.0rc2.dev0+g670d8b5-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-vectors-2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.4-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.0-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.6-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.2.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.7.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.3-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.4-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.0-py36h648b28d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h1d22016_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36hf1f7d93_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.4-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.5.dev0+gddeb071-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.5.dev0+gefa71b1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.1.0.dev0+g9f7fe0f-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5rc1.dev2+g22b7718-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2018.3/hstdp-2018.3-linux-py35.final.txt b/hstdp/2018.3/hstdp-2018.3-linux-py35.final.txt new file mode 100644 index 0000000..d45a73c --- /dev/null +++ b/hstdp/2018.3/hstdp-2018.3-linux-py35.final.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/freetype-2.9.1-h8a8886c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/hstcal-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/alabaster-0.7.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/certifi-2018.8.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cryptography-vectors-2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/dask-core-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/filelock-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/imagesize-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/lxml-4.2.4-py35hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/numpy-base-1.15.0-py35h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pluggy-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/psutil-5.4.6-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/py-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/qt-5.9.6-h52aff34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sphinxcontrib-1.0-py35hcb7efd2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/tornado-5.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/babel-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/setuptools-40.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sphinxcontrib-websupport-1.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cryptography-2.3-py35hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-3.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sphinx-1.7.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/numpydoc-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/matplotlib-2.2.3-py35hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/mkl_fft-1.0.4-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/numpy-1.15.0-py35h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-arraydiff-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.convolve-2.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.distutils-0.3.8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.imagestats-1.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.stimage-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.sphinxext-1.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/astropy-3.0.4-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/crds-7.2.5.dev0+gddeb071-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/pysynphot-0.9.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/reftools-1.7.5.dev0+gefa71b1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/spherical-geometry-1.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stregion-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.ndimage-0.10.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.tools-3.4.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/acstools-2.1.0.dev0+g9f7fe0f-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/calcos-3.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/fitsblender-0.3.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/nictools-1.1.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stistools-1.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.image-2.3.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.imagemanip-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.numdisplay-1.6.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stwcs-1.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/wfc3tools-1.3.5rc1.dev2+g22b7718-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/wfpc2tools-1.0.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/costools-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.skypac-0.9.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/drizzlepac-2.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci-hst-3.0.3-py35_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3/hstdp-2018.3-linux-py36.final.txt b/hstdp/2018.3/hstdp-2018.3-linux-py36.final.txt new file mode 100644 index 0000000..6a54514 --- /dev/null +++ b/hstdp/2018.3/hstdp-2018.3-linux-py36.final.txt @@ -0,0 +1,143 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/freetype-2.9.1-h8a8886c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/hstcal-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/python-3.6.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/alabaster-0.7.11-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/certifi-2018.8.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cloudpickle-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cryptography-vectors-2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/dask-core-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/filelock-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/imagesize-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/lxml-4.2.4-py36hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/numpy-base-1.15.0-py36h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pluggy-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/psutil-5.4.6-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/py-1.5.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/qt-5.9.6-h52aff34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/tornado-5.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pillow-5.2.0-py36heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pyqt-5.9.2-py36h22d08a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/setuptools-40.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cryptography-2.3-py36hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cython-0.28.5-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-3.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sphinx-1.7.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/matplotlib-2.2.3-py36hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/mkl_fft-1.0.4-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/numpy-1.15.0-py36h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pywavelets-0.5.2-py36h035aef0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/scipy-1.1.0-py36hc49cb51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.imagestats-1.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/astropy-3.0.4-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/crds-7.2.5.dev0+gddeb071-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/reftools-1.7.5.dev0+gefa71b1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.tools-3.4.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/acstools-2.1.0.dev0+g9f7fe0f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/calcos-3.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/nictools-1.1.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stistools-1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stwcs-1.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/wfc3tools-1.3.5rc1.dev2+g22b7718-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/costools-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/drizzlepac-2.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3/latest-linux b/hstdp/2018.3/latest-linux new file mode 100644 index 0000000..d45a73c --- /dev/null +++ b/hstdp/2018.3/latest-linux @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/freetype-2.9.1-h8a8886c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/hstcal-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/alabaster-0.7.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/certifi-2018.8.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cryptography-vectors-2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/dask-core-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/filelock-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/imagesize-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/lxml-4.2.4-py35hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/numpy-base-1.15.0-py35h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pluggy-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/psutil-5.4.6-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/py-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/qt-5.9.6-h52aff34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sphinxcontrib-1.0-py35hcb7efd2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/tornado-5.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/babel-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/setuptools-40.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sphinxcontrib-websupport-1.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cryptography-2.3-py35hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-3.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/sphinx-1.7.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/numpydoc-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/matplotlib-2.2.3-py35hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/mkl_fft-1.0.4-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/numpy-1.15.0-py35h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-arraydiff-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.convolve-2.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.distutils-0.3.8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.imagestats-1.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.stimage-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.sphinxext-1.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/linux-64/astropy-3.0.4-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/crds-7.2.5.dev0+gddeb071-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/pysynphot-0.9.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/reftools-1.7.5.dev0+gefa71b1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/spherical-geometry-1.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stregion-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.ndimage-0.10.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.tools-3.4.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/acstools-2.1.0.dev0+g9f7fe0f-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/calcos-3.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/fitsblender-0.3.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/nictools-1.1.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stistools-1.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.image-2.3.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.imagemanip-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.numdisplay-1.6.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stwcs-1.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/linux-64/wfc3tools-1.3.5rc1.dev2+g22b7718-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/wfpc2tools-1.0.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/costools-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci.skypac-0.9.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/drizzlepac-2.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/linux-64/stsci-hst-3.0.3-py35_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3/latest-osx b/hstdp/2018.3/latest-osx new file mode 100644 index 0000000..e9b69e3 --- /dev/null +++ b/hstdp/2018.3/latest-osx @@ -0,0 +1,133 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/osx-64/hstcal-2.1.0rc2.dev0+g670d8b5-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/alabaster-0.7.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/certifi-2018.8.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cryptography-vectors-2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/dask-core-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/docutils-0.14-py35hb13dbd9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/filelock-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/imagesize-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/lxml-4.2.4-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/numpy-base-1.15.0-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pluggy-0.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/psutil-5.4.6-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/py-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/snowballstemmer-1.2.1-py35hbb7be01_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/sphinxcontrib-1.0-py35h3eabf46_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/tornado-5.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/babel-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/networkx-2.0-py35hb193ae4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pillow-5.2.0-py35hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/setuptools-40.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/sphinxcontrib-websupport-1.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cryptography-2.3-py35hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/cython-0.28.5-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/nose-1.3.7-py35h9ce1e3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-3.7.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/sphinx-1.7.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/numpydoc-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/matplotlib-2.2.3-py35h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/mkl_fft-1.0.4-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/numpy-1.15.0-py35h648b28d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-arraydiff-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.convolve-2.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.distutils-0.3.8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.imagestats-1.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.stimage-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/main/osx-64/astropy-3.0.4-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/osx-64/crds-7.2.5.dev0+gddeb071-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/pysynphot-0.9.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/osx-64/reftools-1.7.5.dev0+gefa71b1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/spherical-geometry-1.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stregion-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.ndimage-0.10.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.tools-3.4.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/osx-64/acstools-2.1.0.dev0+g9f7fe0f-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/calcos-3.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/fitsblender-0.3.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/nictools-1.1.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stistools-1.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.image-2.3.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.imagemanip-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.numdisplay-1.6.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stwcs-1.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda-dev/osx-64/wfc3tools-1.3.5rc1.dev2+g22b7718-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/wfpc2tools-1.0.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/costools-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci.skypac-0.9.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/drizzlepac-2.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3/astroconda/osx-64/stsci-hst-3.0.3-py35_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3/release_notes.md b/hstdp/2018.3/release_notes.md new file mode 100644 index 0000000..d51f190 --- /dev/null +++ b/hstdp/2018.3/release_notes.md @@ -0,0 +1,7 @@ +# Release Notes + +* 2018/10/02 - Final + Note: this release only includes Linux builds. The OSX build was not successful and those builds will be published when the issues are resolved. OSX build is left at Iteration 0 for this release. + Linux build used the RHEL-6 system compiler, gcc 4.4.7 for this iteration. +* 2018/08/16 - Iteration 0 + diff --git a/hstdp/2018.3/software_updates.md b/hstdp/2018.3/software_updates.md new file mode 100644 index 0000000..f8a9e36 --- /dev/null +++ b/hstdp/2018.3/software_updates.md @@ -0,0 +1,54 @@ +# Updated numpy 1.15 and dependent packages + +# Packages obtained from development channel explicitly for inclusion in this delivery + ``` + hstcal-2.1.0rc2.dev0+g670d8b5-6 + crds-7.2.5.dev0+gddeb071-py35_3 + reftools-1.7.5.dev0+gefa71b1-py35_2 + acstools-2.1.0.dev0+g9f7fe0f-py35_3 + wfc3tools-1.3.5rc1.dev2+g22b7718-py35_2 + ``` + +# HSTCAL Version 2.1.0 + +The following updates, specified in separate sections for each instrument, have been included with this release. This release is presented as [HSTDP-2018.3 milestones](https://github.com/spacetelescope/hstcal/issues?utf8=%E2%9C%93&q=is%3Aclosed+milestone%3AHSTDP-2018.3) + + +## HSTCAL package updates +- The CFITSIO library is no longer built as a static library incorporated into the HSTCAL executables. + +## HSTIO +[HSTDP-2018.3 Milestones](https://github.com/spacetelescope/hstcal/issues?utf8=%E2%9C%93&q=is%3Aclosed+label%3Ahstio+milestone%3AHSTDP-2018.3) + +- HSTIO updates to Version 2.7. +- Functionality has been added to determine the number of HST IMSETS in a FITS file in a robust fashion [PR#330](https://github.com/spacetelescope/hstcal/pull/330). + +## ACS +[HSTDP-2018.3 Milestones](https://github.com/spacetelescope/hstcal/issues?q=label%3AACS+milestone%3AHSTDP-2018.3+is%3Aclosed), [Data Changes](https://github.com/spacetelescope/hstcal/issues?utf8=%E2%9C%93&q=label%3AACS+milestone%3AHSTDP-2018.3+is%3Aclosed+label%3Achanges-data) + +- CALACS updates to Version 10.1.0 due to updates in the ACSCCD and ACS2D algorithms. +- The dark correction, DARKCORR step of the ACS2D algorithm, has been modified to work directly on the full 2D data rather than on a line-by-line basis [PR#315](https://github.com/spacetelescope/hstcal/pull/315). +- The bias shift correction, BLEVCORR step of the ACSCCD algorithm, has been upgraded to accommodate the new supported subarrays which have both physical and virtual overscan [PR#312](https://github.com/spacetelescope/hstcal/pull/312). This is the same algorithm which applies to full frame data. +- Forward model functionality was implemented which exploits the existing CTE code and usage (Generation 2 only). Instead of correcting the CTE trails, the forward model functionality simulates (adds) the trails [PR#313](https://github.com/spacetelescope/hstcal/pull/313). This functionality should be accessed via the new ACSTOOLS function, acscteforwardmodel.py +- Updated ACS library routine, getacskeys, updated to call the new HSTIO function which robustly determines the number of IMSETS in a FITS file [PR#330](https://github.com/spacetelescope/hstcal/pull/330). + +- [x] Affects old data +- [x] Users should re-retrieve affected datasets from the archive +- [x] Updated reference files delivered by science team + +## STIS + +- CALSTIS remains at Version 3.4.2 for this release. + +- [ ] Affects old data +- [ ] Users should re-retrieve affected datasets from the archive +- [ ] Updated reference files delivered by science team + + +## WFC3 + +- CALWF3 remains at Version 3.4.2 for this release. + +- [ ] Affects old data +- [ ] Users should re-retrieve affected datasets from the archive +- [ ] Updated reference files delivered by science team diff --git a/hstdp/2018.3a/README.md b/hstdp/2018.3a/README.md new file mode 100644 index 0000000..ad98994 --- /dev/null +++ b/hstdp/2018.3a/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2018.3a --file http://ssb.stsci.edu/releases/hstdp/2018.3a/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2018.3a --file http://ssb.stsci.edu/releases/hstdp/2018.3a/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh +$ bash Anaconda3-5.3.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.4-Linux-x86_64.sh +$ bash Miniconda3-4.5.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2018.3a --file http://ssb.stsci.edu/releases/hstdp/2018.3a/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2018.3a +``` diff --git a/hstdp/2018.3a/dev/hstdp-2018.3a-linux-py35.00.txt b/hstdp/2018.3a/dev/hstdp-2018.3a-linux-py35.00.txt new file mode 100644 index 0000000..b3a17c5 --- /dev/null +++ b/hstdp/2018.3a/dev/hstdp-2018.3a-linux-py35.00.txt @@ -0,0 +1,143 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0rc2.dev0+g5264915-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py35hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.2-py35h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py35h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py35h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py35he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py35h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py35hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.7.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.0-py35h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.6-py35h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.2-py35h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.0-py35hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py35hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.4-py35h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.6-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.15-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.2.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py35_0.tar.bz2 diff --git a/hstdp/2018.3a/dev/hstdp-2018.3a-linux-py36.00.txt b/hstdp/2018.3a/dev/hstdp-2018.3a-linux-py36.00.txt new file mode 100644 index 0000000..b3e5f58 --- /dev/null +++ b/hstdp/2018.3a/dev/hstdp-2018.3a-linux-py36.00.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0rc2.dev0+g5264915-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.2-py36h81de0dd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.2-py36h1d66e8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.4-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2018.3a/dev/hstdp-2018.3a-osx-py35.00.txt b/hstdp/2018.3a/dev/hstdp-2018.3a-osx-py35.00.txt new file mode 100644 index 0000000..b0c5a93 --- /dev/null +++ b/hstdp/2018.3a/dev/hstdp-2018.3a-osx-py35.00.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0rc2.dev0+g5264915-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py35hb13dbd9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.2-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py35h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py35hbb7be01_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py35h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.0-py35hb193ae4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.2.0-py35hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py35hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py35h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.7.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.0-py35h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.6-py35hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.2-py35h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.0-py35h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py35h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.4-py35h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.6-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.15-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.2.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.3-py35_0.tar.bz2 diff --git a/hstdp/2018.3a/dev/hstdp-2018.3a-osx-py36.00.txt b/hstdp/2018.3a/dev/hstdp-2018.3a-osx-py36.00.txt new file mode 100644 index 0000000..38d312b --- /dev/null +++ b/hstdp/2018.3a/dev/hstdp-2018.3a-osx-py36.00.txt @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0rc2.dev0+g5264915-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.2-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.2-py36h6a91979_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.4-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2018.3a/hstdp-2018.3a-linux-py35.final.txt b/hstdp/2018.3a/hstdp-2018.3a-linux-py35.final.txt new file mode 100644 index 0000000..d9a6b3f --- /dev/null +++ b/hstdp/2018.3a/hstdp-2018.3a-linux-py35.final.txt @@ -0,0 +1,143 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/python-3.5.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/alabaster-0.7.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/dask-core-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/imagesize-1.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/kiwisolver-1.0.1-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/lxml-4.2.5-py35hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/markupsafe-1.0-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/numpy-base-1.15.2-py35h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/olefile-0.46-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/psutil-5.4.7-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pycparser-2.19-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sphinxcontrib-1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/tornado-5.1.1-py35h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/babel-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cffi-1.11.5-py35he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pyqt-5.9.2-py35h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sphinxcontrib-websupport-1.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cryptography-2.3.1-py35hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/nose-1.3.7-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sphinx-1.7.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/numpydoc-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/imageio-2.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/matplotlib-3.0.0-py35h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/mkl_fft-1.0.6-py35h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/mkl_random-1.0.1-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/numpy-1.15.2-py35h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pywavelets-1.0.0-py35hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/scipy-1.1.0-py35hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.convolve-2.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.distutils-0.3.8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.imagestats-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.stimage-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.sphinxext-1.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/astropy-3.0.4-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/crds-7.2.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/pysynphot-0.9.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/reftools-1.7.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/spherical-geometry-1.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stregion-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.ndimage-0.10.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.tools-3.4.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/acstools-2.0.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/calcos-3.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/fitsblender-0.3.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/nictools-1.1.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stistools-1.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.image-2.3.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.imagemanip-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.numdisplay-1.6.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stwcs-1.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/wfc3tools-1.3.4-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/wfpc2tools-1.0.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/costools-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.skypac-0.9.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/drizzlepac-2.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci-hst-3.0.3-py35_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3a/hstdp-2018.3a-linux-py36.final.txt b/hstdp/2018.3a/hstdp-2018.3a-linux-py36.final.txt new file mode 100644 index 0000000..c5b498a --- /dev/null +++ b/hstdp/2018.3a/hstdp-2018.3a-linux-py36.final.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/numpy-base-1.15.2-py36h81de0dd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/matplotlib-3.0.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/numpy-1.15.2-py36h1d66e8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/astropy-3.0.4-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/crds-7.2.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.tools-3.4.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/acstools-2.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/calcos-3.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/nictools-1.1.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stistools-1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stwcs-1.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/costools-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/drizzlepac-2.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3a/hstdp-2018.3a-osx-py35.final.txt b/hstdp/2018.3a/hstdp-2018.3a-osx-py35.final.txt new file mode 100644 index 0000000..acac51d --- /dev/null +++ b/hstdp/2018.3a/hstdp-2018.3a-osx-py35.final.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/python-3.5.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/alabaster-0.7.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/dask-core-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/decorator-4.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/docutils-0.14-py35hb13dbd9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/imagesize-1.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/lxml-4.2.5-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/markupsafe-1.0-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/numpy-base-1.15.2-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/olefile-0.46-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/psutil-5.4.7-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/purge_path-1.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pycparser-2.19-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/snowballstemmer-1.2.1-py35hbb7be01_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sphinxcontrib-1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/tornado-5.1.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/babel-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cffi-1.11.5-py35h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/networkx-2.0-py35hb193ae4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pillow-5.2.0-py35hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sphinxcontrib-websupport-1.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cryptography-2.3.1-py35hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cython-0.28.5-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/d2to1-0.2.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/nose-1.3.7-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sphinx-1.7.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/numpydoc-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/imageio-2.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/matplotlib-3.0.0-py35h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/mkl_fft-1.0.6-py35hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/mkl_random-1.0.1-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/numpy-1.15.2-py35h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pywavelets-1.0.0-py35h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/scipy-1.1.0-py35h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.convolve-2.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.distutils-0.3.8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.imagestats-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.stimage-0.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.sphinxext-1.2.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/astropy-3.0.4-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/crds-7.2.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/pysynphot-0.9.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/reftools-1.7.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/spherical-geometry-1.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stregion-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.ndimage-0.10.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.sphere-0.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.tools-3.4.13-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/acstools-2.0.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/calcos-3.3.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/fitsblender-0.3.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/nictools-1.1.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stistools-1.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.image-2.3.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.imagemanip-1.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.numdisplay-1.6.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stwcs-1.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/wfc3tools-1.3.4-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/wfpc2tools-1.0.3-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/costools-1.2.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.skypac-0.9.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/drizzlepac-2.2.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci-hst-3.0.3-py35_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3a/hstdp-2018.3a-osx-py36.final.txt b/hstdp/2018.3a/hstdp-2018.3a-osx-py36.final.txt new file mode 100644 index 0000000..0f13342 --- /dev/null +++ b/hstdp/2018.3a/hstdp-2018.3a-osx-py36.final.txt @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/numpy-base-1.15.2-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/matplotlib-3.0.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/numpy-1.15.2-py36h6a91979_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/astropy-3.0.4-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/crds-7.2.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.tools-3.4.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/acstools-2.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/calcos-3.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/nictools-1.1.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stistools-1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.image-2.3.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stwcs-1.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/costools-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/drizzlepac-2.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3a/latest-linux b/hstdp/2018.3a/latest-linux new file mode 100644 index 0000000..c5b498a --- /dev/null +++ b/hstdp/2018.3a/latest-linux @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/numpy-base-1.15.2-py36h81de0dd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/matplotlib-3.0.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/numpy-1.15.2-py36h1d66e8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/linux-64/astropy-3.0.4-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/crds-7.2.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.tools-3.4.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/acstools-2.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/calcos-3.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/nictools-1.1.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stistools-1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stwcs-1.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/costools-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/drizzlepac-2.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3a/latest-osx b/hstdp/2018.3a/latest-osx new file mode 100644 index 0000000..0f13342 --- /dev/null +++ b/hstdp/2018.3a/latest-osx @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/numpy-base-1.15.2-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/matplotlib-3.0.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/numpy-1.15.2-py36h6a91979_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/main/osx-64/astropy-3.0.4-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/crds-7.2.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.tools-3.4.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/acstools-2.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/calcos-3.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/nictools-1.1.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stistools-1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.image-2.3.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stwcs-1.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/costools-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/drizzlepac-2.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2018.3a/astroconda/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2018.3a/release_notes.md b/hstdp/2018.3a/release_notes.md new file mode 100644 index 0000000..c91656b --- /dev/null +++ b/hstdp/2018.3a/release_notes.md @@ -0,0 +1,4 @@ +# Release Notes + +* 2018/11/06 - Final +* 2018/10/16 - Iteration 0 diff --git a/hstdp/2018.3a/software_updates.md b/hstdp/2018.3a/software_updates.md new file mode 100644 index 0000000..8fd4b78 --- /dev/null +++ b/hstdp/2018.3a/software_updates.md @@ -0,0 +1,20 @@ +# HSTCAL Version 2.2.0 + +The following updates, specified in separate sections for each instrument, have been included with this release. This release is presented as [HSTDP-2018.3a milestones](https://github.com/spacetelescope/hstcal/issues?utf8=%E2%9C%93&q=is%3Aclosed+milestone%3AHSTDP-2018.3a). + +## HSTCAL package updates +- Regression testing has been implemented via pytest and Jenkins. (PR #349) + +## WFC3 + +- CALWF3 bumped to Version 3.5.0 for this release. + + * Bug fixes to CTE correction in``wf3cte.e`` + * PR #366 - Fix out of bounds memory access: changes data + +* Code tidy up to CTE correction in``wf3cte.e`` + * PR #367 - Remove unnecessary critical section. + +- [x] Affects old data +- [x] Users should re-retrieve affected datasets from the archive +- [ ] Updated reference files delivered by science team diff --git a/hstdp/2019.2/README.md b/hstdp/2019.2/README.md new file mode 100644 index 0000000..12186b2 --- /dev/null +++ b/hstdp/2019.2/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2019.2 --file http://ssb.stsci.edu/releases/hstdp/2019.2/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2019.2 --file http://ssb.stsci.edu/releases/hstdp/2019.2/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2018.12-Linux-x86_64.sh +$ bash Anaconda3-2018.12-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.12-Linux-x86_64.sh +$ bash Miniconda3-4.5.12-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2019.2 --file http://ssb.stsci.edu/releases/hstdp/2019.2/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2019.2 +``` diff --git a/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.00.txt b/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.00.txt new file mode 100644 index 0000000..c1cd152 --- /dev/null +++ b/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.00.txt @@ -0,0 +1,160 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.1.1-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.1-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.1.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.5.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.4.1-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.5-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.5-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.10-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.0-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.2-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5.dev0+g76c1901-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc1.dev0+gb4589d6-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.0rc1.dev0+gdd5b17a-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.1.0-py36_0.tar.bz2 diff --git a/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.01.txt b/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.01.txt new file mode 100644 index 0000000..2721b71 --- /dev/null +++ b/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.01.txt @@ -0,0 +1,160 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.1.1-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.1-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.1.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.5.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.4.1-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.5-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.5-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.10-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.0-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.2-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5.dev0+g76c1901-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc1.dev0+gb4589d6-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.0rc2.dev0+g415fc1f-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.1.0-py36_0.tar.bz2 diff --git a/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.02.txt b/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.02.txt new file mode 100644 index 0000000..bbfa460 --- /dev/null +++ b/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.02.txt @@ -0,0 +1,160 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.1.1-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.1-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.1.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.5.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.4.1-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.5-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.5-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.10-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.0-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.2-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5.dev0+g76c1901-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc1.dev0+gb4589d6-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.0rc3.dev0+g4cf7ecc-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.1.0-py36_0.tar.bz2 diff --git a/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.03.txt b/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.03.txt new file mode 100644 index 0000000..e40dfa3 --- /dev/null +++ b/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.03.txt @@ -0,0 +1,160 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.1.1-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.1-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.1.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.5.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.4.1-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.5-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.5-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.10-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.0-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.2-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5.dev0+g76c1901-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc1.dev0+gb4589d6-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.0rc4.dev0+g0f75057-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.1.0-py36_0.tar.bz2 diff --git a/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.04.txt b/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.04.txt new file mode 100644 index 0000000..7d0c33c --- /dev/null +++ b/hstdp/2019.2/dev/hstdp-2019.2-linux-py36.04.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.2-py36h81de0dd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.2-py36h1d66e8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.4-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-2.0.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5.dev0+g76c1901-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.2/dev/hstdp-2019.2-osx-py36.02.txt b/hstdp/2019.2/dev/hstdp-2019.2-osx-py36.02.txt new file mode 100644 index 0000000..db5517d --- /dev/null +++ b/hstdp/2019.2/dev/hstdp-2019.2-osx-py36.02.txt @@ -0,0 +1,162 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.36-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.1-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.1.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.5.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.4.1-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.5-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.5-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.8.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.10-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.24.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.2-py36h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.9-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5.dev0+g76c1901-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1rc1.dev0+gb4589d6-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.0rc3.dev0+g4cf7ecc-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.1.0-py36_0.tar.bz2 diff --git a/hstdp/2019.2/dev/hstdp-2019.2-osx-py36.03.txt b/hstdp/2019.2/dev/hstdp-2019.2-osx-py36.03.txt new file mode 100644 index 0000000..f3c92c1 --- /dev/null +++ b/hstdp/2019.2/dev/hstdp-2019.2-osx-py36.03.txt @@ -0,0 +1,162 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.36-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.1-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.1.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.5.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.4.1-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.5-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.5-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.8.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.10-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.24.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.2-py36h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.9-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5.dev0+g76c1901-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1rc1.dev0+gb4589d6-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.0rc4.dev0+g0f75057-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.1.0-py36_0.tar.bz2 diff --git a/hstdp/2019.2/dev/hstdp-2019.2-osx-py36.04.txt b/hstdp/2019.2/dev/hstdp-2019.2-osx-py36.04.txt new file mode 100644 index 0000000..8b9ca36 --- /dev/null +++ b/hstdp/2019.2/dev/hstdp-2019.2-osx-py36.04.txt @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.2-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.2-py36h6a91979_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.4-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-2.0.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5.dev0+g76c1901-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.2.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.2/hstdp-2019.2-linux-py36.final.txt b/hstdp/2019.2/hstdp-2019.2-linux-py36.final.txt new file mode 100644 index 0000000..3fa5fbe --- /dev/null +++ b/hstdp/2019.2/hstdp-2019.2-linux-py36.final.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/numpy-base-1.15.2-py36h81de0dd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/matplotlib-3.0.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/numpy-1.15.2-py36h1d66e8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/astropy-3.0.4-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/crds-7.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.tools-3.4.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/acstools-2.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/nictools-1.1.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stistools-1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stwcs-1.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/costools-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/drizzlepac-2.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.2/hstdp-2019.2-osx-py36.final.txt b/hstdp/2019.2/hstdp-2019.2-osx-py36.final.txt new file mode 100644 index 0000000..4efb8d9 --- /dev/null +++ b/hstdp/2019.2/hstdp-2019.2-osx-py36.final.txt @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/numpy-base-1.15.2-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/matplotlib-3.0.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/numpy-1.15.2-py36h6a91979_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/astropy-3.0.4-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/crds-7.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.tools-3.4.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/acstools-2.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/nictools-1.1.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stistools-1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.image-2.3.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stwcs-1.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/costools-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/drizzlepac-2.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.2/latest-linux b/hstdp/2019.2/latest-linux new file mode 100644 index 0000000..3fa5fbe --- /dev/null +++ b/hstdp/2019.2/latest-linux @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/numpy-base-1.15.2-py36h81de0dd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/matplotlib-3.0.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/numpy-1.15.2-py36h1d66e8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/linux-64/astropy-3.0.4-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/crds-7.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.tools-3.4.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/acstools-2.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/nictools-1.1.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stistools-1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.image-2.3.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stwcs-1.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/costools-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/drizzlepac-2.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.2/latest-osx b/hstdp/2019.2/latest-osx new file mode 100644 index 0000000..4efb8d9 --- /dev/null +++ b/hstdp/2019.2/latest-osx @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/numpy-base-1.15.2-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/matplotlib-3.0.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/numpy-1.15.2-py36h6a91979_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.imagestats-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.stimage-0.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/main/osx-64/astropy-3.0.4-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/crds-7.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/spherical-geometry-1.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.ndimage-0.10.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.tools-3.4.13-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/acstools-2.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/nictools-1.1.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stistools-1.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.image-2.3.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stwcs-1.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/costools-1.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci.skypac-0.9.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/drizzlepac-2.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.2/astroconda/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.2/release_notes.md b/hstdp/2019.2/release_notes.md new file mode 100644 index 0000000..f340b2f --- /dev/null +++ b/hstdp/2019.2/release_notes.md @@ -0,0 +1,4 @@ +# Release Notes + +* 2019/03/15 - Final +* 2019/02/19 - Iteration 0 diff --git a/hstdp/2019.2/software_updates.md b/hstdp/2019.2/software_updates.md new file mode 100644 index 0000000..d8f55bf --- /dev/null +++ b/hstdp/2019.2/software_updates.md @@ -0,0 +1,6 @@ +# drizzlepac version 3.0.0 +# calcos version 3.3.5 +# stwcs version 1.5.1 +# stsci.tools version 3.5.0 + + diff --git a/hstdp/2019.3/README.md b/hstdp/2019.3/README.md new file mode 100644 index 0000000..e3fa797 --- /dev/null +++ b/hstdp/2019.3/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2019.3 --file http://ssb.stsci.edu/releases/hstdp/2019.3/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2019.3 --file http://ssb.stsci.edu/releases/hstdp/2019.3/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2018.12-Linux-x86_64.sh +$ bash Anaconda3-2018.12-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.12-Linux-x86_64.sh +$ bash Miniconda3-4.5.12-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2019.3 --file http://ssb.stsci.edu/releases/hstdp/2019.3/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2019.3 +``` diff --git a/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.00.txt b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.00.txt new file mode 100644 index 0000000..dd31049 --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.00.txt @@ -0,0 +1,162 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.3-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.3-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.3-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev121+gcc9bb45-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc1.dev5+ge1da1f1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.2rc1.dev0+g65f4f73-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.00.yml b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.00.yml new file mode 100644 index 0000000..7ae4d5a --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.00.yml @@ -0,0 +1,165 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h7b6447c_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36he75722e_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hc365091_0 + - cycler=0.10.0=py36_0 + - cython=0.29=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=0.19.4=py36_0 + - dbus=1.13.2=h714fa37_1 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.9=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36hf484d3e_0 + - libedit=3.1.20170329=h6b74fdf_2 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.34=hb9fc6fc_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.9=he85c1e1_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.8=h26e45fe_1 + - libxslt=1.1.32=h1312cb7_0 + - lxml=4.2.5=py36hefd8a0e_0 + - markupsafe=1.0=py36h14c3975_1 + - matplotlib=3.0.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=hf484d3e_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36h7e9f1db_0 + - numpy-base=1.16.3=py36hde5b4d6_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h14c3975_0 + - packaging=18.0=py36_0 + - pcre=8.42=h439df22_0 + - pillow=5.3.0=py36h34e0f95_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h14c3975_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=h6e4f718_2 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.6=h8703b6f_2 + - readline=7.0=h7b6447c_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.20.3=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h7b6447c_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=ha838bed_2 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=2 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - fitsverify=4.18=6 + - hstcal=2.2.0=0 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - reftools=1.7.4=py36_1 + - stistools=1.1=py36_2 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc1.dev0+g65f4f73=py36_0 + - photutils=0.6.dev121+gcc9bb45=py36_0 + - stsci.tools=3.5.0rc2.dev0+g9a02250=py36_0 + - stwcs=1.5.1rc1.dev5+ge1da1f1=py36_2 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsblender=0.3.2=py36_1 + - gwcs=0.10.0=py36_0 + - nictools=1.1.3=py36_2 + - pysynphot=0.9.12=py36_0 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stregion=1.1.4=py36_0 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.2=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.01.txt b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.01.txt new file mode 100644 index 0000000..eeaf514 --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.01.txt @@ -0,0 +1,162 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.3-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.3-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.3-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev121+gcc9bb45-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc2.dev0+g9b765c9-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.2rc2.dev2+g5b77e13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.01.yml b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.01.yml new file mode 100644 index 0000000..1add175 --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.01.yml @@ -0,0 +1,165 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h7b6447c_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36he75722e_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hc365091_0 + - cycler=0.10.0=py36_0 + - cython=0.29=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=0.19.4=py36_0 + - dbus=1.13.2=h714fa37_1 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.9=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36hf484d3e_0 + - libedit=3.1.20170329=h6b74fdf_2 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.9=he85c1e1_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.8=h26e45fe_1 + - libxslt=1.1.32=h1312cb7_0 + - lxml=4.2.5=py36hefd8a0e_0 + - markupsafe=1.0=py36h14c3975_1 + - matplotlib=3.0.2=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=hf484d3e_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36h7e9f1db_0 + - numpy-base=1.16.3=py36hde5b4d6_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h14c3975_0 + - packaging=18.0=py36_0 + - pcre=8.42=h439df22_0 + - pillow=5.3.0=py36h34e0f95_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h14c3975_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=h6e4f718_2 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.6=h8703b6f_2 + - readline=7.0=h7b6447c_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.20.3=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h7b6447c_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=ha838bed_2 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=2 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - fitsverify=4.18=6 + - hstcal=2.2.0=0 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - reftools=1.7.4=py36_1 + - stistools=1.1=py36_2 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc2.dev2+g5b77e13=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc2.dev0+g9b765c9=py36_2 + - photutils=0.6.dev121+gcc9bb45=py36_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsblender=0.3.2=py36_1 + - gwcs=0.10.0=py36_0 + - nictools=1.1.3=py36_2 + - pysynphot=0.9.12=py36_0 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stregion=1.1.4=py36_0 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.2=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.02.txt b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.02.txt new file mode 100644 index 0000000..5558f22 --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.02.txt @@ -0,0 +1,162 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.3-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.3-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.3-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev121+gcc9bb45-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc2.dev0+g9b765c9-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.2rc3.dev0+g5ccb5dd-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.02.yml b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.02.yml new file mode 100644 index 0000000..decc84a --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.02.yml @@ -0,0 +1,165 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h7b6447c_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36he75722e_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hc365091_0 + - cycler=0.10.0=py36_0 + - cython=0.29=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=0.19.4=py36_0 + - dbus=1.13.2=h714fa37_1 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.9=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36hf484d3e_0 + - libedit=3.1.20170329=h6b74fdf_2 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.9=he85c1e1_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.8=h26e45fe_1 + - libxslt=1.1.32=h1312cb7_0 + - lxml=4.2.5=py36hefd8a0e_0 + - markupsafe=1.0=py36h14c3975_1 + - matplotlib=3.0.2=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=hf484d3e_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36h7e9f1db_0 + - numpy-base=1.16.3=py36hde5b4d6_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h14c3975_0 + - packaging=18.0=py36_0 + - pcre=8.42=h439df22_0 + - pillow=5.3.0=py36h34e0f95_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h14c3975_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=h6e4f718_2 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.6=h8703b6f_2 + - readline=7.0=h7b6447c_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.20.3=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h7b6447c_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=ha838bed_2 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=2 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsblender=0.3.2=py36_1 + - fitsverify=4.18=6 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - nictools=1.1.3=py36_2 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - pysynphot=0.9.12=py36_0 + - reftools=1.7.4=py36_1 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stistools=1.1=py36_2 + - stregion=1.1.4=py36_0 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.skypac=1.0.2=py36_0 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc3.dev0+g5ccb5dd=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc2.dev0+g9b765c9=py36_2 + - photutils=0.6.dev121+gcc9bb45=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.03.txt b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.03.txt new file mode 100644 index 0000000..7d60eb6 --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.03.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.2.2-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev121+gcc9bb45-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.4.dev2+g664c976-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc3.dev0+ga6e6a99-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.2rc4.dev0+ga57f8bb-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.1.1-py36_0.tar.bz2 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.03.yml b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.03.yml new file mode 100644 index 0000000..3c35cfd --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-linux-py36.03.yml @@ -0,0 +1,151 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h7b6447c_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36h2e261b9_0 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - cryptography=2.6.1=py36h1ba5d50_0 + - cycler=0.10.0=py36_0 + - cython=0.29.8=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h746ee38_0 + - decorator=4.4.0=py36_1 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.10=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36he6710b0_0 + - libedit=3.1.20181209=hc058e9b_0 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.10=h2733197_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.9=he19cac6_0 + - libxslt=1.1.33=h7d1a2b0_0 + - lxml=4.3.3=py36hefd8a0e_0 + - matplotlib=3.1.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=he6710b0_1 + - networkx=2.3=py_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36h7e9f1db_0 + - numpy-base=1.16.4=py36hde5b4d6_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h7b6447c_1 + - pcre=8.43=he6710b0_0 + - pillow=6.0.0=py36h34e0f95_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h7b6447c_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.7.0=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=h0371630_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.21.1=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - sqlite=3.28.0=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h7b6447c_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.3.7=h0b5b093_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=2 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - d2to1=0.2.12=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsverify=4.18=6 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - nictools=1.1.4=py36_0 + - parsley=1.3=py36_1 + - pysynphot=0.9.12=py36_0 + - reftools=1.7.4=py36_1 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci-hst=3.1.1=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.1=py36_0 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - drizzlepac=3.0.2rc4.dev0+ga57f8bb=py36_0 + - fitsblender=0.3.4.dev2+g664c976=py36_2 + - photutils=0.6.dev121+gcc9bb45=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc3.dev0+ga6e6a99=py36_2 + - pip: + - dask==1.2.2 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.00.txt b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.00.txt new file mode 100644 index 0000000..e5b5583 --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.00.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.3-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.3-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.3-py36h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev121+gcc9bb453-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1rc1.dev5+ge1da1f1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.2rc1.dev0+g65f4f73-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.00.yml b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.00.yml new file mode 100644 index 0000000..66edb74 --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.00.yml @@ -0,0 +1,151 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h1de35cc_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36h6174b99_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hdbc3d79_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=0.19.4=py36_0 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36hbfde631_0 + - entrypoints=0.3=py36_0 + - filelock=3.0.9=py36_0 + - freetype=2.9.1=hb4e5f40_0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36h0a44026_0 + - libcxx=4.0.1=h579ed51_0 + - libcxxabi=4.0.1=hebd6815_0 + - libedit=3.1.20170329=hb402a30_2 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.34=he12f830_0 + - libtiff=4.0.9=hcb84e12_2 + - libxml2=2.9.8=hab757c2_1 + - libxslt=1.1.32=hb819dd2_0 + - lxml=4.2.5=py36hef8c89e_0 + - markupsafe=1.0=py36h1de35cc_1 + - matplotlib=3.0.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=h0a44026_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36hacdab7b_0 + - numpy-base=1.16.3=py36h6575580_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h1de35cc_0 + - packaging=18.0=py36_0 + - pillow=5.3.0=py36hb68e598_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h1de35cc_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36h240cd3f_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=hc167b69_0 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - readline=7.0=h1de35cc_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.20.3=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36h6c7b616_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h1de35cc_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=hf3cbc9b_2 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=1 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - fitsverify=4.18=6 + - hstcal=2.2.0=0 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - reftools=1.7.4=py36_1 + - stistools=1.1=py36_2 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc1.dev0+g65f4f73=py36_0 + - photutils=0.6.dev121+gcc9bb453=py36_0 + - stsci.tools=3.5.0rc2.dev0+g9a02250=py36_0 + - stwcs=1.5.1rc1.dev5+ge1da1f1=py36_2 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - fitsblender=0.3.2=py36_1 + - gwcs=0.10.0=py36_0 + - nictools=1.1.3=py36_2 + - pysynphot=0.9.12=py36_0 + - spherical-geometry=1.2.10=py36_0 + - stregion=1.1.4=py36_0 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.2=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.01.txt b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.01.txt new file mode 100644 index 0000000..b2c5f5d --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.01.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.3-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.3-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.3-py36h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev121+gcc9bb453-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1rc2.dev0+g9b765c9-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.2rc2.dev2+g5b77e13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.01.yml b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.01.yml new file mode 100644 index 0000000..a60b6d1 --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.01.yml @@ -0,0 +1,151 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h1de35cc_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36h6174b99_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hdbc3d79_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=0.19.4=py36_0 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36hbfde631_0 + - entrypoints=0.3=py36_0 + - filelock=3.0.9=py36_0 + - freetype=2.9.1=hb4e5f40_0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36h0a44026_0 + - libcxx=4.0.1=h579ed51_0 + - libcxxabi=4.0.1=hebd6815_0 + - libedit=3.1.20170329=hb402a30_2 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.9=hcb84e12_2 + - libxml2=2.9.8=hab757c2_1 + - libxslt=1.1.32=hb819dd2_0 + - lxml=4.2.5=py36hef8c89e_0 + - markupsafe=1.0=py36h1de35cc_1 + - matplotlib=3.0.2=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=h0a44026_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36hacdab7b_0 + - numpy-base=1.16.3=py36h6575580_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h1de35cc_0 + - packaging=18.0=py36_0 + - pillow=5.3.0=py36hb68e598_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h1de35cc_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36h240cd3f_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=hc167b69_0 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - readline=7.0=h1de35cc_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.20.3=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36h6c7b616_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h1de35cc_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=hf3cbc9b_2 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=1 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - fitsverify=4.18=6 + - hstcal=2.2.0=0 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - reftools=1.7.4=py36_1 + - stistools=1.1=py36_2 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc2.dev2+g5b77e13=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc2.dev0+g9b765c9=py36_2 + - photutils=0.6.dev121+gcc9bb453=py36_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - fitsblender=0.3.2=py36_1 + - gwcs=0.10.0=py36_0 + - nictools=1.1.3=py36_2 + - pysynphot=0.9.12=py36_0 + - spherical-geometry=1.2.10=py36_0 + - stregion=1.1.4=py36_0 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.2=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.02.txt b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.02.txt new file mode 100644 index 0000000..cc9fc8f --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.02.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.3-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.3-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.3-py36h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev121+gcc9bb453-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1rc2.dev0+g9b765c9-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.2rc3.dev0+g5ccb5dd-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.02.yml b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.02.yml new file mode 100644 index 0000000..57a01ce --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.02.yml @@ -0,0 +1,151 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h1de35cc_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36h6174b99_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hdbc3d79_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=0.19.4=py36_0 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36hbfde631_0 + - entrypoints=0.3=py36_0 + - filelock=3.0.9=py36_0 + - freetype=2.9.1=hb4e5f40_0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36h0a44026_0 + - libcxx=4.0.1=h579ed51_0 + - libcxxabi=4.0.1=hebd6815_0 + - libedit=3.1.20170329=hb402a30_2 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.9=hcb84e12_2 + - libxml2=2.9.8=hab757c2_1 + - libxslt=1.1.32=hb819dd2_0 + - lxml=4.2.5=py36hef8c89e_0 + - markupsafe=1.0=py36h1de35cc_1 + - matplotlib=3.0.2=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=h0a44026_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36hacdab7b_0 + - numpy-base=1.16.3=py36h6575580_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h1de35cc_0 + - packaging=18.0=py36_0 + - pillow=5.3.0=py36hb68e598_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h1de35cc_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36h240cd3f_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=hc167b69_0 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - readline=7.0=h1de35cc_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.20.3=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36h6c7b616_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h1de35cc_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=hf3cbc9b_2 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=1 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - fitsblender=0.3.2=py36_1 + - fitsverify=4.18=6 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - nictools=1.1.3=py36_2 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - pysynphot=0.9.12=py36_0 + - reftools=1.7.4=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stistools=1.1=py36_2 + - stregion=1.1.4=py36_0 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.skypac=1.0.2=py36_0 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc3.dev0+g5ccb5dd=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc2.dev0+g9b765c9=py36_2 + - photutils=0.6.dev121+gcc9bb453=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.03.txt b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.03.txt new file mode 100644 index 0000000..0d904ac --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.03.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev121+gcc9bb453-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.4.dev2+g664c976-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1rc3.dev0+ga6e6a99-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.2rc4.dev0+ga57f8bb-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.1.1-py36_0.tar.bz2 diff --git a/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.03.yml b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.03.yml new file mode 100644 index 0000000..9c17bff --- /dev/null +++ b/hstdp/2019.3/dev/hstdp-2019.3-osx-py36.03.yml @@ -0,0 +1,150 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h1de35cc_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36hb5b8e2f_0 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - cryptography=2.6.1=py36ha12b0ac_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29.8=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h90a0687_0 + - decorator=4.4.0=py36_1 + - entrypoints=0.3=py36_0 + - expat=2.2.6=h0a44026_0 + - filelock=3.0.10=py36_0 + - fontconfig=2.13.0=h5d5b041_1 + - freetype=2.9.1=hb4e5f40_0 + - gettext=0.19.8.1=h15daf44_3 + - glib=2.56.2=hd9629dc_0 + - gst-plugins-base=1.14.0=h29ae3d9_1 + - gstreamer=1.14.0=h415b841_1 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36h0a44026_0 + - libcxx=4.0.1=hcfea43d_1 + - libcxxabi=4.0.1=hcfea43d_1 + - libedit=3.1.20181209=hb402a30_0 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.10=hcb84e12_2 + - libuuid=1.0.3=h6bb4b03_2 + - libxml2=2.9.9=hab757c2_0 + - libxslt=1.1.33=h33a18ac_0 + - llvm-openmp=4.0.1=hcfea43d_1 + - lxml=4.3.3=py36hef8c89e_0 + - matplotlib=3.1.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=h0a44026_1 + - networkx=2.3=py_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36hacdab7b_0 + - numpy-base=1.16.4=py36h6575580_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h1de35cc_1 + - pcre=8.43=h0a44026_0 + - pillow=6.0.0=py36hb68e598_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h1de35cc_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h655552a_2 + - pysocks=1.7.0=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=haf84260_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - qt=5.9.7=h468cd18_1 + - readline=7.0=h1de35cc_5 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.21.1=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36h0a44026_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - sqlite=3.28.0=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h1de35cc_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36h8c6ec74_0 + - webencodings=0.5.1=py36_1 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=h1de35cc_3 + - zstd=1.3.7=h5bba6e5_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=1 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - d2to1=0.2.12=py36_0 + - fitsverify=4.18=6 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - nictools=1.1.4=py36_0 + - parsley=1.3=py36_1 + - pysynphot=0.9.12=py36_0 + - reftools=1.7.4=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci-hst=3.1.1=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.1=py36_0 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - drizzlepac=3.0.2rc4.dev0+ga57f8bb=py36_0 + - fitsblender=0.3.4.dev2+g664c976=py36_2 + - photutils=0.6.dev121+gcc9bb453=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc3.dev0+ga6e6a99=py36_2 + - pip: + - dask==1.2.2 diff --git a/hstdp/2019.3/hstdp-2019.3-linux-py36.final.txt b/hstdp/2019.3/hstdp-2019.3-linux-py36.final.txt new file mode 100644 index 0000000..6d8f27e --- /dev/null +++ b/hstdp/2019.3/hstdp-2019.3-linux-py36.final.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.tools-3.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/drizzlepac-3.0.2-py36h7b7c402_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3/hstdp-2019.3-linux-py36.final.yml b/hstdp/2019.3/hstdp-2019.3-linux-py36.final.yml new file mode 100644 index 0000000..06aefae --- /dev/null +++ b/hstdp/2019.3/hstdp-2019.3-linux-py36.final.yml @@ -0,0 +1,148 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults +dependencies: + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h7b6447c_0 + - astroquery=0.3.9=py36_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - calcos=3.3.5=py36_0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36h2e261b9_0 + - cfitsio=3.440=2 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - cryptography=2.6.1=py36h1ba5d50_0 + - cycler=0.10.0=py36_0 + - cython=0.29.8=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - d2to1=0.2.12=py36_0 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h746ee38_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - decorator=4.4.0=py36_1 + - drizzlepac=3.0.2=py36h7b7c402_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.10=py36_0 + - fitsblender=0.3.5=py36_0 + - fitsverify=4.18=6 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36he6710b0_0 + - libedit=3.1.20181209=hc058e9b_0 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.10=h2733197_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.9=he19cac6_0 + - libxslt=1.1.33=h7d1a2b0_0 + - lxml=4.3.3=py36hefd8a0e_0 + - matplotlib=3.1.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=he6710b0_1 + - networkx=2.3=py_0 + - nictools=1.1.4=py36_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36h7e9f1db_0 + - numpy-base=1.16.4=py36hde5b4d6_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h7b6447c_1 + - parsley=1.3=py36_1 + - pcre=8.43=he6710b0_0 + - photutils=0.6=py36_0 + - pillow=6.0.0=py36h34e0f95_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h7b6447c_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.7.0=py36_0 + - pysynphot=0.9.12=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=h0371630_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - reftools=1.7.4=py36_1 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.21.1=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - secretstorage=2.3.1=py36_1 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - spherical-geometry=1.2.10=py36_0 + - sqlite=3.28.0=h7b6447c_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - stsci.tools=3.5.2=py36_0 + - stwcs=1.5.1=py36_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h7b6447c_0 + - tweakwcs=0.5.1=py36_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36_0 + - webencodings=0.5.1=py36_1 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.3.7=h0b5b093_0 + diff --git a/hstdp/2019.3/hstdp-2019.3-osx-py36.final.txt b/hstdp/2019.3/hstdp-2019.3-osx-py36.final.txt new file mode 100644 index 0000000..08dfe17 --- /dev/null +++ b/hstdp/2019.3/hstdp-2019.3-osx-py36.final.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.tools-3.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/drizzlepac-3.0.2-py36h7b7c402_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3/hstdp-2019.3-osx-py36.final.yml b/hstdp/2019.3/hstdp-2019.3-osx-py36.final.yml new file mode 100644 index 0000000..d280faa --- /dev/null +++ b/hstdp/2019.3/hstdp-2019.3-osx-py36.final.yml @@ -0,0 +1,147 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults +dependencies: + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h1de35cc_0 + - astroquery=0.3.9=py36_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.5.15=0 + - calcos=3.3.5=py36_0 + - certifi=2019.6.16=py36_0 + - cffi=1.12.3=py36hb5b8e2f_0 + - cfitsio=3.440=1 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - cryptography=2.6.1=py36ha12b0ac_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29.8=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - d2to1=0.2.12=py36_0 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h90a0687_0 + - decorator=4.4.0=py36_1 + - drizzlepac=3.0.2=py36h7b7c402_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=h0a44026_0 + - filelock=3.0.10=py36_0 + - fitsblender=0.3.5=py36_0 + - fitsverify=4.18=6 + - fontconfig=2.13.0=h5d5b041_1 + - freetype=2.9.1=hb4e5f40_0 + - gettext=0.19.8.1=h15daf44_3 + - glib=2.56.2=hd9629dc_0 + - gst-plugins-base=1.14.0=h29ae3d9_1 + - gstreamer=1.14.0=h415b841_1 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36h0a44026_0 + - libcxx=4.0.1=hcfea43d_1 + - libcxxabi=4.0.1=hcfea43d_1 + - libedit=3.1.20181209=hb402a30_0 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.10=hcb84e12_2 + - libuuid=1.0.3=h6bb4b03_2 + - libxml2=2.9.9=hab757c2_0 + - libxslt=1.1.33=h33a18ac_0 + - llvm-openmp=4.0.1=hcfea43d_1 + - lxml=4.3.3=py36hef8c89e_0 + - matplotlib=3.1.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=h0a44026_1 + - networkx=2.3=py_0 + - nictools=1.1.4=py36_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36hacdab7b_0 + - numpy-base=1.16.4=py36h6575580_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h1de35cc_1 + - parsley=1.3=py36_1 + - pcre=8.43=h0a44026_0 + - photutils=0.6=py36_0 + - pillow=6.0.0=py36hb68e598_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h1de35cc_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h655552a_2 + - pysocks=1.7.0=py36_0 + - pysynphot=0.9.12=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=haf84260_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - qt=5.9.7=h468cd18_1 + - readline=7.0=h1de35cc_5 + - reftools=1.7.4=py36_1 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.21.1=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36h0a44026_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - spherical-geometry=1.2.10=py36_0 + - sqlite=3.28.0=ha441bb4_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - stsci.tools=3.5.2=py36_0 + - stwcs=1.5.1=py36_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h1de35cc_0 + - tweakwcs=0.5.1=py36_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36h8c6ec74_0 + - webencodings=0.5.1=py36_1 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=h1de35cc_3 + - zstd=1.3.7=h5bba6e5_0 + diff --git a/hstdp/2019.3/latest-linux b/hstdp/2019.3/latest-linux new file mode 100644 index 0000000..6d8f27e --- /dev/null +++ b/hstdp/2019.3/latest-linux @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.tools-3.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/drizzlepac-3.0.2-py36h7b7c402_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3/latest-osx b/hstdp/2019.3/latest-osx new file mode 100644 index 0000000..08dfe17 --- /dev/null +++ b/hstdp/2019.3/latest-osx @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.tools-3.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/drizzlepac-3.0.2-py36h7b7c402_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3/release_notes.md b/hstdp/2019.3/release_notes.md new file mode 100644 index 0000000..19f8553 --- /dev/null +++ b/hstdp/2019.3/release_notes.md @@ -0,0 +1,15 @@ +# Release Notes + +* 2019/07/08 - Final +* 2019/06/03 - Iteration 3 + - Updated base environment (drifted out of sync with "defaults" channel) + - Update fitsblender (dev version) + - Update stsci.skymatch (latest release) + - Update stwcs (dev version) +* 2019/05/15 - Iteration 2 + - Normalize URLs for all channel aliases +* 2019/05/13 - Iteration 1 + - Use internal URLs instead of mirror + - Fixed stsci.tools import problem + - Upgraded matplotlib to match scikit's requirements +* 2019/05/03 - Iteration 0 diff --git a/hstdp/2019.3/software_updates.md b/hstdp/2019.3/software_updates.md new file mode 100644 index 0000000..ff3f3b4 --- /dev/null +++ b/hstdp/2019.3/software_updates.md @@ -0,0 +1,5 @@ +# drizzlepac version 3.0.2 +# fitsblender version 0.3.5 +# stwcs version 1.5.1 +# stsci.tools version 3.5.2 +# photutils verison 0.6 diff --git a/hstdp/2019.3a/README.md b/hstdp/2019.3a/README.md new file mode 100644 index 0000000..e3fa797 --- /dev/null +++ b/hstdp/2019.3a/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2019.3 --file http://ssb.stsci.edu/releases/hstdp/2019.3/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2019.3 --file http://ssb.stsci.edu/releases/hstdp/2019.3/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2018.12-Linux-x86_64.sh +$ bash Anaconda3-2018.12-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.12-Linux-x86_64.sh +$ bash Miniconda3-4.5.12-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2019.3 --file http://ssb.stsci.edu/releases/hstdp/2019.3/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2019.3 +``` diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.00.txt b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.00.txt new file mode 100644 index 0000000..dd31049 --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.00.txt @@ -0,0 +1,162 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.3-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.3-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.3-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev121+gcc9bb45-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc1.dev5+ge1da1f1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.2rc1.dev0+g65f4f73-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.00.yml b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.00.yml new file mode 100644 index 0000000..7ae4d5a --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.00.yml @@ -0,0 +1,165 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h7b6447c_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36he75722e_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hc365091_0 + - cycler=0.10.0=py36_0 + - cython=0.29=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=0.19.4=py36_0 + - dbus=1.13.2=h714fa37_1 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.9=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36hf484d3e_0 + - libedit=3.1.20170329=h6b74fdf_2 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.34=hb9fc6fc_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.9=he85c1e1_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.8=h26e45fe_1 + - libxslt=1.1.32=h1312cb7_0 + - lxml=4.2.5=py36hefd8a0e_0 + - markupsafe=1.0=py36h14c3975_1 + - matplotlib=3.0.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=hf484d3e_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36h7e9f1db_0 + - numpy-base=1.16.3=py36hde5b4d6_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h14c3975_0 + - packaging=18.0=py36_0 + - pcre=8.42=h439df22_0 + - pillow=5.3.0=py36h34e0f95_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h14c3975_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=h6e4f718_2 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.6=h8703b6f_2 + - readline=7.0=h7b6447c_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.20.3=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h7b6447c_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=ha838bed_2 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=2 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - fitsverify=4.18=6 + - hstcal=2.2.0=0 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - reftools=1.7.4=py36_1 + - stistools=1.1=py36_2 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc1.dev0+g65f4f73=py36_0 + - photutils=0.6.dev121+gcc9bb45=py36_0 + - stsci.tools=3.5.0rc2.dev0+g9a02250=py36_0 + - stwcs=1.5.1rc1.dev5+ge1da1f1=py36_2 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsblender=0.3.2=py36_1 + - gwcs=0.10.0=py36_0 + - nictools=1.1.3=py36_2 + - pysynphot=0.9.12=py36_0 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stregion=1.1.4=py36_0 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.2=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.01.txt b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.01.txt new file mode 100644 index 0000000..eeaf514 --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.01.txt @@ -0,0 +1,162 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.3-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.3-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.3-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev121+gcc9bb45-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc2.dev0+g9b765c9-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.2rc2.dev2+g5b77e13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.01.yml b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.01.yml new file mode 100644 index 0000000..1add175 --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.01.yml @@ -0,0 +1,165 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h7b6447c_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36he75722e_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hc365091_0 + - cycler=0.10.0=py36_0 + - cython=0.29=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=0.19.4=py36_0 + - dbus=1.13.2=h714fa37_1 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.9=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36hf484d3e_0 + - libedit=3.1.20170329=h6b74fdf_2 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.9=he85c1e1_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.8=h26e45fe_1 + - libxslt=1.1.32=h1312cb7_0 + - lxml=4.2.5=py36hefd8a0e_0 + - markupsafe=1.0=py36h14c3975_1 + - matplotlib=3.0.2=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=hf484d3e_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36h7e9f1db_0 + - numpy-base=1.16.3=py36hde5b4d6_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h14c3975_0 + - packaging=18.0=py36_0 + - pcre=8.42=h439df22_0 + - pillow=5.3.0=py36h34e0f95_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h14c3975_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=h6e4f718_2 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.6=h8703b6f_2 + - readline=7.0=h7b6447c_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.20.3=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h7b6447c_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=ha838bed_2 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=2 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - fitsverify=4.18=6 + - hstcal=2.2.0=0 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - reftools=1.7.4=py36_1 + - stistools=1.1=py36_2 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc2.dev2+g5b77e13=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc2.dev0+g9b765c9=py36_2 + - photutils=0.6.dev121+gcc9bb45=py36_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsblender=0.3.2=py36_1 + - gwcs=0.10.0=py36_0 + - nictools=1.1.3=py36_2 + - pysynphot=0.9.12=py36_0 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stregion=1.1.4=py36_0 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.2=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.02.txt b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.02.txt new file mode 100644 index 0000000..5558f22 --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.02.txt @@ -0,0 +1,162 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.3-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.3-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.3-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev121+gcc9bb45-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc2.dev0+g9b765c9-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.2rc3.dev0+g5ccb5dd-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.02.yml b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.02.yml new file mode 100644 index 0000000..decc84a --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.02.yml @@ -0,0 +1,165 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h7b6447c_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36he75722e_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hc365091_0 + - cycler=0.10.0=py36_0 + - cython=0.29=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=0.19.4=py36_0 + - dbus=1.13.2=h714fa37_1 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.9=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36hf484d3e_0 + - libedit=3.1.20170329=h6b74fdf_2 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.9=he85c1e1_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.8=h26e45fe_1 + - libxslt=1.1.32=h1312cb7_0 + - lxml=4.2.5=py36hefd8a0e_0 + - markupsafe=1.0=py36h14c3975_1 + - matplotlib=3.0.2=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=hf484d3e_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36h7e9f1db_0 + - numpy-base=1.16.3=py36hde5b4d6_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h14c3975_0 + - packaging=18.0=py36_0 + - pcre=8.42=h439df22_0 + - pillow=5.3.0=py36h34e0f95_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h14c3975_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=h6e4f718_2 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.6=h8703b6f_2 + - readline=7.0=h7b6447c_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.20.3=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h7b6447c_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=ha838bed_2 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=2 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsblender=0.3.2=py36_1 + - fitsverify=4.18=6 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - nictools=1.1.3=py36_2 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - pysynphot=0.9.12=py36_0 + - reftools=1.7.4=py36_1 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stistools=1.1=py36_2 + - stregion=1.1.4=py36_0 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.skypac=1.0.2=py36_0 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc3.dev0+g5ccb5dd=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc2.dev0+g9b765c9=py36_2 + - photutils=0.6.dev121+gcc9bb45=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.03.txt b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.03.txt new file mode 100644 index 0000000..7d60eb6 --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.03.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.2.2-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev121+gcc9bb45-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.4.dev2+g664c976-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1rc3.dev0+ga6e6a99-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.2rc4.dev0+ga57f8bb-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.1.1-py36_0.tar.bz2 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.03.yml b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.03.yml new file mode 100644 index 0000000..3c35cfd --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-linux-py36.03.yml @@ -0,0 +1,151 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h7b6447c_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36h2e261b9_0 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - cryptography=2.6.1=py36h1ba5d50_0 + - cycler=0.10.0=py36_0 + - cython=0.29.8=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h746ee38_0 + - decorator=4.4.0=py36_1 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.10=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36he6710b0_0 + - libedit=3.1.20181209=hc058e9b_0 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.10=h2733197_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.9=he19cac6_0 + - libxslt=1.1.33=h7d1a2b0_0 + - lxml=4.3.3=py36hefd8a0e_0 + - matplotlib=3.1.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=he6710b0_1 + - networkx=2.3=py_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36h7e9f1db_0 + - numpy-base=1.16.4=py36hde5b4d6_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h7b6447c_1 + - pcre=8.43=he6710b0_0 + - pillow=6.0.0=py36h34e0f95_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h7b6447c_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.7.0=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=h0371630_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.21.1=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - sqlite=3.28.0=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h7b6447c_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.3.7=h0b5b093_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=2 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - d2to1=0.2.12=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsverify=4.18=6 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - nictools=1.1.4=py36_0 + - parsley=1.3=py36_1 + - pysynphot=0.9.12=py36_0 + - reftools=1.7.4=py36_1 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci-hst=3.1.1=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.1=py36_0 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - drizzlepac=3.0.2rc4.dev0+ga57f8bb=py36_0 + - fitsblender=0.3.4.dev2+g664c976=py36_2 + - photutils=0.6.dev121+gcc9bb45=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc3.dev0+ga6e6a99=py36_2 + - pip: + - dask==1.2.2 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.00.txt b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.00.txt new file mode 100644 index 0000000..e5b5583 --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.00.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.3-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.3-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.3-py36h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev121+gcc9bb453-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1rc1.dev5+ge1da1f1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.2rc1.dev0+g65f4f73-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.00.yml b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.00.yml new file mode 100644 index 0000000..66edb74 --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.00.yml @@ -0,0 +1,151 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h1de35cc_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36h6174b99_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hdbc3d79_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=0.19.4=py36_0 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36hbfde631_0 + - entrypoints=0.3=py36_0 + - filelock=3.0.9=py36_0 + - freetype=2.9.1=hb4e5f40_0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36h0a44026_0 + - libcxx=4.0.1=h579ed51_0 + - libcxxabi=4.0.1=hebd6815_0 + - libedit=3.1.20170329=hb402a30_2 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.34=he12f830_0 + - libtiff=4.0.9=hcb84e12_2 + - libxml2=2.9.8=hab757c2_1 + - libxslt=1.1.32=hb819dd2_0 + - lxml=4.2.5=py36hef8c89e_0 + - markupsafe=1.0=py36h1de35cc_1 + - matplotlib=3.0.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=h0a44026_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36hacdab7b_0 + - numpy-base=1.16.3=py36h6575580_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h1de35cc_0 + - packaging=18.0=py36_0 + - pillow=5.3.0=py36hb68e598_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h1de35cc_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36h240cd3f_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=hc167b69_0 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - readline=7.0=h1de35cc_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.20.3=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36h6c7b616_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h1de35cc_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=hf3cbc9b_2 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=1 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - fitsverify=4.18=6 + - hstcal=2.2.0=0 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - reftools=1.7.4=py36_1 + - stistools=1.1=py36_2 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc1.dev0+g65f4f73=py36_0 + - photutils=0.6.dev121+gcc9bb453=py36_0 + - stsci.tools=3.5.0rc2.dev0+g9a02250=py36_0 + - stwcs=1.5.1rc1.dev5+ge1da1f1=py36_2 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - fitsblender=0.3.2=py36_1 + - gwcs=0.10.0=py36_0 + - nictools=1.1.3=py36_2 + - pysynphot=0.9.12=py36_0 + - spherical-geometry=1.2.10=py36_0 + - stregion=1.1.4=py36_0 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.2=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.01.txt b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.01.txt new file mode 100644 index 0000000..b2c5f5d --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.01.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.3-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.3-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.3-py36h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev121+gcc9bb453-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1rc2.dev0+g9b765c9-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.2rc2.dev2+g5b77e13-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.01.yml b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.01.yml new file mode 100644 index 0000000..a60b6d1 --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.01.yml @@ -0,0 +1,151 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h1de35cc_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36h6174b99_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hdbc3d79_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=0.19.4=py36_0 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36hbfde631_0 + - entrypoints=0.3=py36_0 + - filelock=3.0.9=py36_0 + - freetype=2.9.1=hb4e5f40_0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36h0a44026_0 + - libcxx=4.0.1=h579ed51_0 + - libcxxabi=4.0.1=hebd6815_0 + - libedit=3.1.20170329=hb402a30_2 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.9=hcb84e12_2 + - libxml2=2.9.8=hab757c2_1 + - libxslt=1.1.32=hb819dd2_0 + - lxml=4.2.5=py36hef8c89e_0 + - markupsafe=1.0=py36h1de35cc_1 + - matplotlib=3.0.2=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=h0a44026_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36hacdab7b_0 + - numpy-base=1.16.3=py36h6575580_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h1de35cc_0 + - packaging=18.0=py36_0 + - pillow=5.3.0=py36hb68e598_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h1de35cc_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36h240cd3f_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=hc167b69_0 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - readline=7.0=h1de35cc_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.20.3=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36h6c7b616_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h1de35cc_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=hf3cbc9b_2 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=1 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - fitsverify=4.18=6 + - hstcal=2.2.0=0 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - reftools=1.7.4=py36_1 + - stistools=1.1=py36_2 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc2.dev2+g5b77e13=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc2.dev0+g9b765c9=py36_2 + - photutils=0.6.dev121+gcc9bb453=py36_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - fitsblender=0.3.2=py36_1 + - gwcs=0.10.0=py36_0 + - nictools=1.1.3=py36_2 + - pysynphot=0.9.12=py36_0 + - spherical-geometry=1.2.10=py36_0 + - stregion=1.1.4=py36_0 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.2=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.02.txt b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.02.txt new file mode 100644 index 0000000..cc9fc8f --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.02.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.3-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/purge_path-1.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.8.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.3-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.3-py36h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphinxext-1.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev121+gcc9bb453-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.numdisplay-1.6.1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1rc2.dev0+g9b765c9-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.4-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.3-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.2rc3.dev0+g5ccb5dd-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.0.3-py36_0.tar.bz2 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.02.yml b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.02.yml new file mode 100644 index 0000000..57a01ce --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.02.yml @@ -0,0 +1,151 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - alabaster=0.7.12=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h1de35cc_0 + - atomicwrites=1.2.1=py36_0 + - attrs=18.2.0=py36h28b3542_0 + - babel=2.6.0=py36_0 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2018.03.07=0 + - certifi=2018.10.15=py36_0 + - cffi=1.11.5=py36h6174b99_1 + - chardet=3.0.4=py36_1 + - cloudpickle=0.6.1=py36_0 + - cryptography=2.3.1=py36hdbc3d79_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=0.19.4=py36_0 + - decorator=4.3.0=py36_0 + - docutils=0.14=py36hbfde631_0 + - entrypoints=0.3=py36_0 + - filelock=3.0.9=py36_0 + - freetype=2.9.1=hb4e5f40_0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.7=py36_0 + - imageio=2.5.0=py36_0 + - imagesize=1.1.0=py36_0 + - intel-openmp=2019.0=118 + - jinja2=2.10=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.0.1=py36h0a44026_0 + - libcxx=4.0.1=h579ed51_0 + - libcxxabi=4.0.1=hebd6815_0 + - libedit=3.1.20170329=hb402a30_2 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.9=hcb84e12_2 + - libxml2=2.9.8=hab757c2_1 + - libxslt=1.1.32=hb819dd2_0 + - lxml=4.2.5=py36hef8c89e_0 + - markupsafe=1.0=py36h1de35cc_1 + - matplotlib=3.0.2=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=4.3.0=py36_0 + - ncurses=6.1=h0a44026_0 + - networkx=2.2=py36_1 + - nose=1.3.7=py36_2 + - numpy=1.16.3=py36hacdab7b_0 + - numpy-base=1.16.3=py36h6575580_0 + - numpydoc=0.8.0=py36_0 + - olefile=0.46=py36_0 + - openssl=1.0.2p=h1de35cc_0 + - packaging=18.0=py36_0 + - pillow=5.3.0=py36hb68e598_0 + - pip=10.0.1=py36_0 + - pluggy=0.7.1=py36h28b3542_0 + - psutil=5.4.7=py36h1de35cc_0 + - py=1.7.0=py36_0 + - pycparser=2.19=py36_0 + - pygments=2.2.0=py36h240cd3f_0 + - pyopenssl=18.0.0=py36_0 + - pyparsing=2.2.2=py36_0 + - pysocks=1.6.8=py36_0 + - pytest=3.8.2=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.4.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.0=py36_0 + - pytest-remotedata=0.3.0=py36_0 + - python=3.6.6=hc167b69_0 + - python-dateutil=2.7.3=py36_0 + - pytz=2018.5=py36_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - readline=7.0=h1de35cc_5 + - requests=2.19.1=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.20.3=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=40.4.3=py36_0 + - six=1.11.0=py36_1 + - snowballstemmer=1.2.1=py36h6c7b616_0 + - soupsieve=1.8=py36_0 + - sphinx=1.8.1=py36_0 + - sphinxcontrib=1.0=py36_1 + - sphinxcontrib-websupport=1.1.0=py36_1 + - sqlite=3.25.2=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=5.1.1=py36h1de35cc_0 + - urllib3=1.23=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.32.1=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=hf3cbc9b_2 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=1 + - costools=1.2.2=py36_0 + - crds=7.3.0=py36_0 + - d2to1=0.2.12=py36_0 + - fitsblender=0.3.2=py36_1 + - fitsverify=4.18=6 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - nictools=1.1.3=py36_2 + - parsley=1.3=py36_1 + - purge_path=1.2.0=py36_0 + - pysynphot=0.9.12=py36_0 + - reftools=1.7.4=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stistools=1.1=py36_2 + - stregion=1.1.4=py36_0 + - stsci-hst=3.0.3=py36_0 + - stsci.convolve=2.2.2=py36_0 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.numdisplay=1.6.1=py36_2 + - stsci.skypac=1.0.2=py36_0 + - stsci.sphere=0.2=py36_2 + - stsci.sphinxext=1.2.2=py36_1 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.0=py36_0 + - wfc3tools=1.3.4=py36_2 + - wfpc2tools=1.0.3=py36_2 + - drizzlepac=3.0.2rc3.dev0+g5ccb5dd=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc2.dev0+g9b765c9=py36_2 + - photutils=0.6.dev121+gcc9bb453=py36_0 + - pip: + - dask==0.19.4 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.03.txt b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.03.txt new file mode 100644 index 0000000..0d904ac --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.03.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev121+gcc9bb453-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.4.dev2+g664c976-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1rc3.dev0+ga6e6a99-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.2rc4.dev0+ga57f8bb-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.1.1-py36_0.tar.bz2 diff --git a/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.03.yml b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.03.yml new file mode 100644 index 0000000..9c17bff --- /dev/null +++ b/hstdp/2019.3a/dev/hstdp-2019.3-osx-py36.03.yml @@ -0,0 +1,150 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h1de35cc_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36hb5b8e2f_0 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - cryptography=2.6.1=py36ha12b0ac_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29.8=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h90a0687_0 + - decorator=4.4.0=py36_1 + - entrypoints=0.3=py36_0 + - expat=2.2.6=h0a44026_0 + - filelock=3.0.10=py36_0 + - fontconfig=2.13.0=h5d5b041_1 + - freetype=2.9.1=hb4e5f40_0 + - gettext=0.19.8.1=h15daf44_3 + - glib=2.56.2=hd9629dc_0 + - gst-plugins-base=1.14.0=h29ae3d9_1 + - gstreamer=1.14.0=h415b841_1 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36h0a44026_0 + - libcxx=4.0.1=hcfea43d_1 + - libcxxabi=4.0.1=hcfea43d_1 + - libedit=3.1.20181209=hb402a30_0 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.10=hcb84e12_2 + - libuuid=1.0.3=h6bb4b03_2 + - libxml2=2.9.9=hab757c2_0 + - libxslt=1.1.33=h33a18ac_0 + - llvm-openmp=4.0.1=hcfea43d_1 + - lxml=4.3.3=py36hef8c89e_0 + - matplotlib=3.1.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=h0a44026_1 + - networkx=2.3=py_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36hacdab7b_0 + - numpy-base=1.16.4=py36h6575580_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h1de35cc_1 + - pcre=8.43=h0a44026_0 + - pillow=6.0.0=py36hb68e598_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h1de35cc_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h655552a_2 + - pysocks=1.7.0=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=haf84260_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - qt=5.9.7=h468cd18_1 + - readline=7.0=h1de35cc_5 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.21.1=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36h0a44026_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - sqlite=3.28.0=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h1de35cc_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36h8c6ec74_0 + - webencodings=0.5.1=py36_1 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=h1de35cc_3 + - zstd=1.3.7=h5bba6e5_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.5=py36_0 + - cfitsio=3.440=1 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - d2to1=0.2.12=py36_0 + - fitsverify=4.18=6 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - nictools=1.1.4=py36_0 + - parsley=1.3=py36_1 + - pysynphot=0.9.12=py36_0 + - reftools=1.7.4=py36_1 + - spherical-geometry=1.2.10=py36_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci-hst=3.1.1=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - tweakwcs=0.5.1=py36_0 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - drizzlepac=3.0.2rc4.dev0+ga57f8bb=py36_0 + - fitsblender=0.3.4.dev2+g664c976=py36_2 + - photutils=0.6.dev121+gcc9bb453=py36_0 + - stsci.tools=3.5.2rc1.dev0+g9a02250=py36_1 + - stwcs=1.5.1rc3.dev0+ga6e6a99=py36_2 + - pip: + - dask==1.2.2 diff --git a/hstdp/2019.3a/hstdp-2019.3-linux-py36.final.txt b/hstdp/2019.3a/hstdp-2019.3-linux-py36.final.txt new file mode 100644 index 0000000..6d8f27e --- /dev/null +++ b/hstdp/2019.3a/hstdp-2019.3-linux-py36.final.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.tools-3.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/drizzlepac-3.0.2-py36h7b7c402_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3a/hstdp-2019.3-linux-py36.final.yml b/hstdp/2019.3a/hstdp-2019.3-linux-py36.final.yml new file mode 100644 index 0000000..06aefae --- /dev/null +++ b/hstdp/2019.3a/hstdp-2019.3-linux-py36.final.yml @@ -0,0 +1,148 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults +dependencies: + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h7b6447c_0 + - astroquery=0.3.9=py36_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - calcos=3.3.5=py36_0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36h2e261b9_0 + - cfitsio=3.440=2 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - cryptography=2.6.1=py36h1ba5d50_0 + - cycler=0.10.0=py36_0 + - cython=0.29.8=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - d2to1=0.2.12=py36_0 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h746ee38_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - decorator=4.4.0=py36_1 + - drizzlepac=3.0.2=py36h7b7c402_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.10=py36_0 + - fitsblender=0.3.5=py36_0 + - fitsverify=4.18=6 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36he6710b0_0 + - libedit=3.1.20181209=hc058e9b_0 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.10=h2733197_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.9=he19cac6_0 + - libxslt=1.1.33=h7d1a2b0_0 + - lxml=4.3.3=py36hefd8a0e_0 + - matplotlib=3.1.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=he6710b0_1 + - networkx=2.3=py_0 + - nictools=1.1.4=py36_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36h7e9f1db_0 + - numpy-base=1.16.4=py36hde5b4d6_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h7b6447c_1 + - parsley=1.3=py36_1 + - pcre=8.43=he6710b0_0 + - photutils=0.6=py36_0 + - pillow=6.0.0=py36h34e0f95_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h7b6447c_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.7.0=py36_0 + - pysynphot=0.9.12=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=h0371630_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - reftools=1.7.4=py36_1 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.21.1=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - secretstorage=2.3.1=py36_1 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - spherical-geometry=1.2.10=py36_0 + - sqlite=3.28.0=h7b6447c_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - stsci.tools=3.5.2=py36_0 + - stwcs=1.5.1=py36_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h7b6447c_0 + - tweakwcs=0.5.1=py36_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36_0 + - webencodings=0.5.1=py36_1 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.3.7=h0b5b093_0 + diff --git a/hstdp/2019.3a/hstdp-2019.3-osx-py36.final.txt b/hstdp/2019.3a/hstdp-2019.3-osx-py36.final.txt new file mode 100644 index 0000000..08dfe17 --- /dev/null +++ b/hstdp/2019.3a/hstdp-2019.3-osx-py36.final.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.tools-3.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/drizzlepac-3.0.2-py36h7b7c402_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3a/hstdp-2019.3-osx-py36.final.yml b/hstdp/2019.3a/hstdp-2019.3-osx-py36.final.yml new file mode 100644 index 0000000..d280faa --- /dev/null +++ b/hstdp/2019.3a/hstdp-2019.3-osx-py36.final.yml @@ -0,0 +1,147 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults +dependencies: + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.1.2=py36h1de35cc_0 + - astroquery=0.3.9=py36_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.5.15=0 + - calcos=3.3.5=py36_0 + - certifi=2019.6.16=py36_0 + - cffi=1.12.3=py36hb5b8e2f_0 + - cfitsio=3.440=1 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - cryptography=2.6.1=py36ha12b0ac_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29.8=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - d2to1=0.2.12=py36_0 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h90a0687_0 + - decorator=4.4.0=py36_1 + - drizzlepac=3.0.2=py36h7b7c402_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=h0a44026_0 + - filelock=3.0.10=py36_0 + - fitsblender=0.3.5=py36_0 + - fitsverify=4.18=6 + - fontconfig=2.13.0=h5d5b041_1 + - freetype=2.9.1=hb4e5f40_0 + - gettext=0.19.8.1=h15daf44_3 + - glib=2.56.2=hd9629dc_0 + - gst-plugins-base=1.14.0=h29ae3d9_1 + - gstreamer=1.14.0=h415b841_1 + - gwcs=0.10.0=py36_0 + - hstcal=2.2.0=0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36h0a44026_0 + - libcxx=4.0.1=hcfea43d_1 + - libcxxabi=4.0.1=hcfea43d_1 + - libedit=3.1.20181209=hb402a30_0 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.10=hcb84e12_2 + - libuuid=1.0.3=h6bb4b03_2 + - libxml2=2.9.9=hab757c2_0 + - libxslt=1.1.33=h33a18ac_0 + - llvm-openmp=4.0.1=hcfea43d_1 + - lxml=4.3.3=py36hef8c89e_0 + - matplotlib=3.1.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=h0a44026_1 + - networkx=2.3=py_0 + - nictools=1.1.4=py36_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36hacdab7b_0 + - numpy-base=1.16.4=py36h6575580_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h1de35cc_1 + - parsley=1.3=py36_1 + - pcre=8.43=h0a44026_0 + - photutils=0.6=py36_0 + - pillow=6.0.0=py36hb68e598_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h1de35cc_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h655552a_2 + - pysocks=1.7.0=py36_0 + - pysynphot=0.9.12=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=haf84260_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - qt=5.9.7=h468cd18_1 + - readline=7.0=h1de35cc_5 + - reftools=1.7.4=py36_1 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.21.1=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36h0a44026_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - spherical-geometry=1.2.10=py36_0 + - sqlite=3.28.0=ha441bb4_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - stsci.tools=3.5.2=py36_0 + - stwcs=1.5.1=py36_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h1de35cc_0 + - tweakwcs=0.5.1=py36_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36h8c6ec74_0 + - webencodings=0.5.1=py36_1 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=h1de35cc_3 + - zstd=1.3.7=h5bba6e5_0 + diff --git a/hstdp/2019.3a/latest-linux b/hstdp/2019.3a/latest-linux new file mode 100644 index 0000000..6d8f27e --- /dev/null +++ b/hstdp/2019.3a/latest-linux @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/linux-64/astropy-3.1.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.tools-3.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/linux-64/drizzlepac-3.0.2-py36h7b7c402_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3a/latest-osx b/hstdp/2019.3a/latest-osx new file mode 100644 index 0000000..08dfe17 --- /dev/null +++ b/hstdp/2019.3a/latest-osx @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/hstcal-2.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/main/osx-64/astropy-3.1.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.tools-3.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/calcos-3.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3/astroconda/osx-64/drizzlepac-3.0.2-py36h7b7c402_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3a/release_notes.md b/hstdp/2019.3a/release_notes.md new file mode 100644 index 0000000..19f8553 --- /dev/null +++ b/hstdp/2019.3a/release_notes.md @@ -0,0 +1,15 @@ +# Release Notes + +* 2019/07/08 - Final +* 2019/06/03 - Iteration 3 + - Updated base environment (drifted out of sync with "defaults" channel) + - Update fitsblender (dev version) + - Update stsci.skymatch (latest release) + - Update stwcs (dev version) +* 2019/05/15 - Iteration 2 + - Normalize URLs for all channel aliases +* 2019/05/13 - Iteration 1 + - Use internal URLs instead of mirror + - Fixed stsci.tools import problem + - Upgraded matplotlib to match scikit's requirements +* 2019/05/03 - Iteration 0 diff --git a/hstdp/2019.3a/software_updates.md b/hstdp/2019.3a/software_updates.md new file mode 100644 index 0000000..ff3f3b4 --- /dev/null +++ b/hstdp/2019.3a/software_updates.md @@ -0,0 +1,5 @@ +# drizzlepac version 3.0.2 +# fitsblender version 0.3.5 +# stwcs version 1.5.1 +# stsci.tools version 3.5.2 +# photutils verison 0.6 diff --git a/hstdp/2019.3b/README.md b/hstdp/2019.3b/README.md new file mode 100644 index 0000000..248a324 --- /dev/null +++ b/hstdp/2019.3b/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2019.3b --file http://ssb.stsci.edu/releases/hstdp/2019.3b/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2019.3b --file http://ssb.stsci.edu/releases/hstdp/2019.3b/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2018.12-Linux-x86_64.sh +$ bash Anaconda3-2018.12-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.12-Linux-x86_64.sh +$ bash Miniconda3-4.5.12-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2019.3b --file http://ssb.stsci.edu/releases/hstdp/2019.3b/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2019.3b +``` diff --git a/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.00.txt b/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.00.txt new file mode 100644 index 0000000..ac06697 --- /dev/null +++ b/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.00.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.3.0rc1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.2.2-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.7-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.2-py36h7b7c402_0.tar.bz2 diff --git a/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.00.yml b/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.00.yml new file mode 100644 index 0000000..b6d2648 --- /dev/null +++ b/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.00.yml @@ -0,0 +1,148 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h7b6447c_0 + - astroquery=0.3.9=py36_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - calcos=3.3.7=py36_0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36h2e261b9_0 + - cfitsio=3.440=2 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - cryptography=2.6.1=py36h1ba5d50_0 + - cycler=0.10.0=py36_0 + - cython=0.29.8=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - d2to1=0.2.12=py36_0 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h746ee38_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - decorator=4.4.0=py36_1 + - drizzlepac=3.0.2=py36h7b7c402_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.10=py36_0 + - fitsblender=0.3.5=py36_0 + - fitsverify=4.18=6 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - gwcs=0.10.0=py36_0 + - hstcal=2.3.0rc1=0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36he6710b0_0 + - libedit=3.1.20181209=hc058e9b_0 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.10=h2733197_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.9=he19cac6_0 + - libxslt=1.1.33=h7d1a2b0_0 + - lxml=4.3.3=py36hefd8a0e_0 + - matplotlib=3.1.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=he6710b0_1 + - networkx=2.3=py_0 + - nictools=1.1.4=py36_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36h7e9f1db_0 + - numpy-base=1.16.4=py36hde5b4d6_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h7b6447c_1 + - parsley=1.3=py36_1 + - pcre=8.43=he6710b0_0 + - photutils=0.6=py36_0 + - pillow=6.0.0=py36h34e0f95_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h7b6447c_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.7.0=py36_0 + - pysynphot=0.9.12=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=h0371630_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - reftools=1.7.4=py36_1 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.21.1=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - secretstorage=2.3.1=py36_1 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - spherical-geometry=1.2.10=py36_0 + - sqlite=3.28.0=h7b6447c_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - stsci.tools=3.6.0=py36_0 + - stwcs=1.5.1=py36_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h7b6447c_0 + - tweakwcs=0.5.1=py36_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36_0 + - webencodings=0.5.1=py36_1 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.3.7=h0b5b093_0 diff --git a/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.01.txt b/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.01.txt new file mode 100644 index 0000000..cecb310 --- /dev/null +++ b/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.01.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.3.0rc1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.2.2-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.7-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.2-py36_0.tar.bz2 diff --git a/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.01.yml b/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.01.yml new file mode 100644 index 0000000..becd3da --- /dev/null +++ b/hstdp/2019.3b/dev/hstdp-2019.3b-linux-py36.01.yml @@ -0,0 +1,148 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h7b6447c_0 + - astroquery=0.3.9=py36_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - calcos=3.3.7=py36_0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36h2e261b9_0 + - cfitsio=3.440=2 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - cryptography=2.6.1=py36h1ba5d50_0 + - cycler=0.10.0=py36_0 + - cython=0.29.8=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - d2to1=0.2.12=py36_0 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h746ee38_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - decorator=4.4.0=py36_1 + - drizzlepac=3.0.2=py36_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.10=py36_0 + - fitsblender=0.3.5=py36_0 + - fitsverify=4.18=6 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - gwcs=0.10.0=py36_0 + - hstcal=2.3.0rc1=0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36he6710b0_0 + - libedit=3.1.20181209=hc058e9b_0 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.10=h2733197_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.9=he19cac6_0 + - libxslt=1.1.33=h7d1a2b0_0 + - lxml=4.3.3=py36hefd8a0e_0 + - matplotlib=3.1.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=he6710b0_1 + - networkx=2.3=py_0 + - nictools=1.1.4=py36_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36h7e9f1db_0 + - numpy-base=1.16.4=py36hde5b4d6_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h7b6447c_1 + - parsley=1.3=py36_1 + - pcre=8.43=he6710b0_0 + - photutils=0.6=py36_0 + - pillow=6.0.0=py36h34e0f95_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h7b6447c_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.7.0=py36_0 + - pysynphot=0.9.12=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=h0371630_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - reftools=1.7.4=py36_1 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.21.1=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - secretstorage=2.3.1=py36_1 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - spherical-geometry=1.2.10=py36_0 + - sqlite=3.28.0=h7b6447c_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - stsci.tools=3.6.0=py36_0 + - stwcs=1.5.1=py36_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h7b6447c_0 + - tweakwcs=0.5.1=py36_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36_0 + - webencodings=0.5.1=py36_1 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.3.7=h0b5b093_0 diff --git a/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.00.txt b/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.00.txt new file mode 100644 index 0000000..7b6365f --- /dev/null +++ b/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.3.0rc1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.7-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.2-py36h7b7c402_0.tar.bz2 diff --git a/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.00.yml b/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.00.yml new file mode 100644 index 0000000..3787681 --- /dev/null +++ b/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.00.yml @@ -0,0 +1,147 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h1de35cc_0 + - astroquery=0.3.9=py36_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.5.15=0 + - calcos=3.3.7=py36_0 + - certifi=2019.6.16=py36_0 + - cffi=1.12.3=py36hb5b8e2f_0 + - cfitsio=3.440=1 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - cryptography=2.6.1=py36ha12b0ac_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29.8=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - d2to1=0.2.12=py36_0 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h90a0687_0 + - decorator=4.4.0=py36_1 + - drizzlepac=3.0.2=py36h7b7c402_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=h0a44026_0 + - filelock=3.0.10=py36_0 + - fitsblender=0.3.5=py36_0 + - fitsverify=4.18=6 + - fontconfig=2.13.0=h5d5b041_1 + - freetype=2.9.1=hb4e5f40_0 + - gettext=0.19.8.1=h15daf44_3 + - glib=2.56.2=hd9629dc_0 + - gst-plugins-base=1.14.0=h29ae3d9_1 + - gstreamer=1.14.0=h415b841_1 + - gwcs=0.10.0=py36_0 + - hstcal=2.3.0rc1=0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36h0a44026_0 + - libcxx=4.0.1=hcfea43d_1 + - libcxxabi=4.0.1=hcfea43d_1 + - libedit=3.1.20181209=hb402a30_0 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.10=hcb84e12_2 + - libuuid=1.0.3=h6bb4b03_2 + - libxml2=2.9.9=hab757c2_0 + - libxslt=1.1.33=h33a18ac_0 + - llvm-openmp=4.0.1=hcfea43d_1 + - lxml=4.3.3=py36hef8c89e_0 + - matplotlib=3.1.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=h0a44026_1 + - networkx=2.3=py_0 + - nictools=1.1.4=py36_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36hacdab7b_0 + - numpy-base=1.16.4=py36h6575580_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h1de35cc_1 + - parsley=1.3=py36_1 + - pcre=8.43=h0a44026_0 + - photutils=0.6=py36_0 + - pillow=6.0.0=py36hb68e598_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h1de35cc_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h655552a_2 + - pysocks=1.7.0=py36_0 + - pysynphot=0.9.12=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=haf84260_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - qt=5.9.7=h468cd18_1 + - readline=7.0=h1de35cc_5 + - reftools=1.7.4=py36_1 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.21.1=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36h0a44026_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - spherical-geometry=1.2.10=py36_0 + - sqlite=3.28.0=ha441bb4_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - stsci.tools=3.6.0=py36_0 + - stwcs=1.5.1=py36_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h1de35cc_0 + - tweakwcs=0.5.1=py36_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36h8c6ec74_0 + - webencodings=0.5.1=py36_1 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=h1de35cc_3 + - zstd=1.3.7=h5bba6e5_0 diff --git a/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.01.txt b/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.01.txt new file mode 100644 index 0000000..f2aa7eb --- /dev/null +++ b/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.01.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.3.0rc1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.7-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.2-py36_0.tar.bz2 diff --git a/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.01.yml b/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.01.yml new file mode 100644 index 0000000..4d5d5b6 --- /dev/null +++ b/hstdp/2019.3b/dev/hstdp-2019.3b-osx-py36.01.yml @@ -0,0 +1,147 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h1de35cc_0 + - astroquery=0.3.9=py36_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.5.15=0 + - calcos=3.3.7=py36_0 + - certifi=2019.6.16=py36_0 + - cffi=1.12.3=py36hb5b8e2f_0 + - cfitsio=3.440=1 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - cryptography=2.6.1=py36ha12b0ac_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29.8=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - d2to1=0.2.12=py36_0 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h90a0687_0 + - decorator=4.4.0=py36_1 + - drizzlepac=3.0.2=py36_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=h0a44026_0 + - filelock=3.0.10=py36_0 + - fitsblender=0.3.5=py36_0 + - fitsverify=4.18=6 + - fontconfig=2.13.0=h5d5b041_1 + - freetype=2.9.1=hb4e5f40_0 + - gettext=0.19.8.1=h15daf44_3 + - glib=2.56.2=hd9629dc_0 + - gst-plugins-base=1.14.0=h29ae3d9_1 + - gstreamer=1.14.0=h415b841_1 + - gwcs=0.10.0=py36_0 + - hstcal=2.3.0rc1=0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36h0a44026_0 + - libcxx=4.0.1=hcfea43d_1 + - libcxxabi=4.0.1=hcfea43d_1 + - libedit=3.1.20181209=hb402a30_0 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.10=hcb84e12_2 + - libuuid=1.0.3=h6bb4b03_2 + - libxml2=2.9.9=hab757c2_0 + - libxslt=1.1.33=h33a18ac_0 + - llvm-openmp=4.0.1=hcfea43d_1 + - lxml=4.3.3=py36hef8c89e_0 + - matplotlib=3.1.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=h0a44026_1 + - networkx=2.3=py_0 + - nictools=1.1.4=py36_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36hacdab7b_0 + - numpy-base=1.16.4=py36h6575580_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h1de35cc_1 + - parsley=1.3=py36_1 + - pcre=8.43=h0a44026_0 + - photutils=0.6=py36_0 + - pillow=6.0.0=py36hb68e598_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h1de35cc_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h655552a_2 + - pysocks=1.7.0=py36_0 + - pysynphot=0.9.12=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=haf84260_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - qt=5.9.7=h468cd18_1 + - readline=7.0=h1de35cc_5 + - reftools=1.7.4=py36_1 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.21.1=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36h0a44026_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - spherical-geometry=1.2.10=py36_0 + - sqlite=3.28.0=ha441bb4_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - stsci.tools=3.6.0=py36_0 + - stwcs=1.5.1=py36_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h1de35cc_0 + - tweakwcs=0.5.1=py36_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36h8c6ec74_0 + - webencodings=0.5.1=py36_1 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=h1de35cc_3 + - zstd=1.3.7=h5bba6e5_0 diff --git a/hstdp/2019.3b/hstdp-2019.3b-linux-py36.final.txt b/hstdp/2019.3b/hstdp-2019.3b-linux-py36.final.txt new file mode 100644 index 0000000..5948b80 --- /dev/null +++ b/hstdp/2019.3b/hstdp-2019.3b-linux-py36.final.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/hstcal-2.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/drizzlepac-3.0.2-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3b/hstdp-2019.3b-linux-py36.final.yml b/hstdp/2019.3b/hstdp-2019.3b-linux-py36.final.yml new file mode 100644 index 0000000..e89fc73 --- /dev/null +++ b/hstdp/2019.3b/hstdp-2019.3b-linux-py36.final.yml @@ -0,0 +1,147 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults +dependencies: + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h7b6447c_0 + - astroquery=0.3.9=py36_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - calcos=3.3.7=py36_0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36h2e261b9_0 + - cfitsio=3.440=2 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - cryptography=2.6.1=py36h1ba5d50_0 + - cycler=0.10.0=py36_0 + - cython=0.29.8=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - d2to1=0.2.12=py36_0 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h746ee38_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - decorator=4.4.0=py36_1 + - drizzlepac=3.0.2=py36_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.10=py36_0 + - fitsblender=0.3.5=py36_0 + - fitsverify=4.18=6 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - gwcs=0.10.0=py36_0 + - hstcal=2.3.0=0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h9c2bf20_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36he6710b0_0 + - libedit=3.1.20181209=hc058e9b_0 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=8.2.0=hdf63c60_1 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=8.2.0=hdf63c60_1 + - libtiff=4.0.10=h2733197_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.9=he19cac6_0 + - libxslt=1.1.33=h7d1a2b0_0 + - lxml=4.3.3=py36hefd8a0e_0 + - matplotlib=3.1.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=he6710b0_1 + - networkx=2.3=py_0 + - nictools=1.1.4=py36_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36h7e9f1db_0 + - numpy-base=1.16.4=py36hde5b4d6_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h7b6447c_1 + - parsley=1.3=py36_1 + - pcre=8.43=he6710b0_0 + - photutils=0.6=py36_0 + - pillow=6.0.0=py36h34e0f95_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h7b6447c_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.7.0=py36_0 + - pysynphot=0.9.12=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=h0371630_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1=py36h7b6447c_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - reftools=1.7.4=py36_1 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.21.1=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - secretstorage=2.3.1=py36_1 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - spherical-geometry=1.2.10=py36_0 + - sqlite=3.28.0=h7b6447c_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - stsci.tools=3.6.0=py36_0 + - stwcs=1.5.1=py36_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h7b6447c_0 + - tweakwcs=0.5.1=py36_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36_0 + - webencodings=0.5.1=py36_1 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.3.7=h0b5b093_0 diff --git a/hstdp/2019.3b/hstdp-2019.3b-osx-py36.final.txt b/hstdp/2019.3b/hstdp-2019.3b-osx-py36.final.txt new file mode 100644 index 0000000..7a6b065 --- /dev/null +++ b/hstdp/2019.3b/hstdp-2019.3b-osx-py36.final.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/hstcal-2.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/drizzlepac-3.0.2-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3b/hstdp-2019.3b-osx-py36.final.yml b/hstdp/2019.3b/hstdp-2019.3b-osx-py36.final.yml new file mode 100644 index 0000000..bf97ed4 --- /dev/null +++ b/hstdp/2019.3b/hstdp-2019.3b-osx-py36.final.yml @@ -0,0 +1,146 @@ +channels: + - http://ssb.stsci.edu/astroconda + - defaults +dependencies: + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h1de35cc_0 + - astroquery=0.3.9=py36_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.5.15=0 + - calcos=3.3.7=py36_0 + - certifi=2019.6.16=py36_0 + - cffi=1.12.3=py36hb5b8e2f_0 + - cfitsio=3.440=1 + - chardet=3.0.4=py36_1 + - cloudpickle=1.0.0=py_0 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - cryptography=2.6.1=py36ha12b0ac_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29.8=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - d2to1=0.2.12=py36_0 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h90a0687_0 + - decorator=4.4.0=py36_1 + - drizzlepac=3.0.2=py36_0 + - entrypoints=0.3=py36_0 + - expat=2.2.6=h0a44026_0 + - filelock=3.0.10=py36_0 + - fitsblender=0.3.5=py36_0 + - fitsverify=4.18=6 + - fontconfig=2.13.0=h5d5b041_1 + - freetype=2.9.1=hb4e5f40_0 + - gettext=0.19.8.1=h15daf44_3 + - glib=2.56.2=hd9629dc_0 + - gst-plugins-base=1.14.0=h29ae3d9_1 + - gstreamer=1.14.0=h415b841_1 + - gwcs=0.10.0=py36_0 + - hstcal=2.3.0=0 + - html5lib=1.0.1=py36_0 + - icu=58.2=h4b95b61_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36h0a44026_0 + - libcxx=4.0.1=hcfea43d_1 + - libcxxabi=4.0.1=hcfea43d_1 + - libedit=3.1.20181209=hb402a30_0 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.10=hcb84e12_2 + - libuuid=1.0.3=h6bb4b03_2 + - libxml2=2.9.9=hab757c2_0 + - libxslt=1.1.33=h33a18ac_0 + - llvm-openmp=4.0.1=hcfea43d_1 + - lxml=4.3.3=py36hef8c89e_0 + - matplotlib=3.1.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=h0a44026_1 + - networkx=2.3=py_0 + - nictools=1.1.4=py36_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36hacdab7b_0 + - numpy-base=1.16.4=py36h6575580_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h1de35cc_1 + - parsley=1.3=py36_1 + - pcre=8.43=h0a44026_0 + - photutils=0.6=py36_0 + - pillow=6.0.0=py36hb68e598_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h1de35cc_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h655552a_2 + - pysocks=1.7.0=py36_0 + - pysynphot=0.9.12=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=haf84260_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1=py36h1de35cc_0 + - qt=5.9.7=h468cd18_1 + - readline=7.0=h1de35cc_5 + - reftools=1.7.4=py36_1 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.21.1=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36h0a44026_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - spherical-geometry=1.2.10=py36_0 + - sqlite=3.28.0=ha441bb4_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.4=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.1=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.2=py36_1 + - stsci.tools=3.6.0=py36_0 + - stwcs=1.5.1=py36_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h1de35cc_0 + - tweakwcs=0.5.1=py36_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36h8c6ec74_0 + - webencodings=0.5.1=py36_1 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=h1de35cc_3 + - zstd=1.3.7=h5bba6e5_0 diff --git a/hstdp/2019.3b/latest-linux b/hstdp/2019.3b/latest-linux new file mode 100644 index 0000000..5948b80 --- /dev/null +++ b/hstdp/2019.3b/latest-linux @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/hstcal-2.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/drizzlepac-3.0.2-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3b/latest-osx b/hstdp/2019.3b/latest-osx new file mode 100644 index 0000000..7a6b065 --- /dev/null +++ b/hstdp/2019.3b/latest-osx @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/hstcal-2.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/drizzlepac-3.0.2-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3b/release_notes.md b/hstdp/2019.3b/release_notes.md new file mode 100644 index 0000000..32e9605 --- /dev/null +++ b/hstdp/2019.3b/release_notes.md @@ -0,0 +1,5 @@ +# Release Notes + +* 2019/08/13 - Final +* 2019/07/26 - Iteration 1 +* 2019/07/18 - Iteration 0 diff --git a/hstdp/2019.3b/software_updates.md b/hstdp/2019.3b/software_updates.md new file mode 100644 index 0000000..0da549d --- /dev/null +++ b/hstdp/2019.3b/software_updates.md @@ -0,0 +1,4 @@ +# astropy version 3.2.1 +# calcos verison 3.7.7 +# hstcal version 2.3.0 +# stsci.tools version 3.6.0 diff --git a/hstdp/2019.3c/README.md b/hstdp/2019.3c/README.md new file mode 100644 index 0000000..7df46ce --- /dev/null +++ b/hstdp/2019.3c/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2019.3c --file http://ssb.stsci.edu/releases/hstdp/2019.3c/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2019.3c --file http://ssb.stsci.edu/releases/hstdp/2019.3c/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.07-Linux-x86_64.sh +$ bash Anaconda3-2019.07-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.10-Linux-x86_64.sh +$ bash Miniconda3-4.7.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2019.3c --file http://ssb.stsci.edu/releases/hstdp/2019.3c/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2019.3c +``` diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.00.pip b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.00.pip new file mode 100644 index 0000000..d33cb55 --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.00.pip @@ -0,0 +1,95 @@ +acstools==3.0.0 +asdf==2.3.3 +asn1crypto==0.24.0 +astropy==3.2.1 +astroquery==0.3.9 +atomicwrites==1.3.0 +attrs==19.1.0 +beautifulsoup4==4.7.1 +calcos==3.3.7 +certifi==2019.3.9 +cffi==1.12.3 +chardet==3.0.4 +cloudpickle==1.0.0 +costools==1.2.3 +crds==7.3.3 +cryptography==2.6.1 +cycler==0.10.0 +Cython==0.29.8 +cytoolz==0.9.0.1 +d2to1==0.2.12 +dask==1.2.2 +decorator==4.4.0 +drizzlepac==3.0.3 +entrypoints==0.3 +filelock==3.0.10 +fitsblender==0.3.6 +gwcs==0.11.0 +html5lib==1.0.1 +idna==2.8 +imageio==2.5.0 +joblib==0.13.2 +jsonschema==2.6.0 +keyring==18.0.0 +kiwisolver==1.1.0 +lxml==4.3.3 +matplotlib==3.1.0 +mkl-fft==1.0.12 +mkl-random==1.0.2 +more-itertools==7.0.0 +networkx==2.3 +nictools==1.1.4 +nose==1.3.7 +numpy==1.16.4 +olefile==0.46 +Parsley==1.3 +photutils==0.7 +Pillow==6.0.0 +pluggy==0.11.0 +psutil==5.6.2 +py==1.8.0 +pycparser==2.19 +pyOpenSSL==19.0.0 +pyparsing==2.4.0 +PySocks==1.7.0 +pysynphot==0.9.14 +pytest==4.5.0 +pytest-arraydiff==0.3 +pytest-astropy==0.5.0 +pytest-doctestplus==0.3.0 +pytest-openfiles==0.3.2 +pytest-remotedata==0.3.1 +python-dateutil==2.8.0 +pytz==2019.1 +PyWavelets==1.0.3 +PyYAML==5.1.2 +reftools==1.7.4 +requests==2.21.0 +scikit-image==0.15.0 +scikit-learn==0.21.1 +scipy==1.2.1 +SecretStorage==2.3.1 +semantic-version==2.6.0 +six==1.12.0 +soupsieve==1.8 +spherical-geometry==1.2.17 +stistools==1.3.0 +stregion==1.1.6 +stsci.convolve==2.2.2 +stsci.distutils==0.3.8.dev0 +stsci.image==2.3.3 +stsci.imagemanip==1.1.4 +stsci.imagestats==1.6.2 +stsci.ndimage==0.10.3 +stsci.skypac==1.0.4 +stsci.stimage==0.2.4 +stsci.tools==3.6.0 +stwcs==1.5.2 +toolz==0.9.0 +tornado==6.0.2 +tweakwcs==0.5.1 +urllib3==1.24.2 +wcwidth==0.1.7 +webencodings==0.5.1 +wfc3tools==1.3.5 +wfpc2tools==1.0.4 diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.00.txt b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.00.txt new file mode 100644 index 0000000..638a2d2 --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.00.txt @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/_libgcc_mutex-0.1-main.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/hstcal-2.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-hea5a465_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1003.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.2.2-py_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-5.1.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/html5lib-1.0.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.11.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pysynphot-0.9.14-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.17-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stregion-1.1.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/calcos-3.3.7-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.7-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stistools-1.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.5.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/costools-1.2.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-3.0.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci-hst-3.1.1-py36_0.tar.bz2 diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.00.yml b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.00.yml new file mode 100644 index 0000000..c277014 --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.00.yml @@ -0,0 +1,154 @@ +name: hstdp-2019.3c-linux-py36.00 +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - _libgcc_mutex=0.1=main + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h7b6447c_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36h2e261b9_0 + - chardet=3.0.4=py36_1003 + - cloudpickle=1.0.0=py_0 + - cryptography=2.6.1=py36h1ba5d50_0 + - cycler=0.10.0=py36_0 + - cython=0.29.8=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h746ee38_0 + - decorator=4.4.0=py36_1 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.10=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py_0 + - icu=58.2=h9c2bf20_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36he6710b0_0 + - libedit=3.1.20181209=hc058e9b_0 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=9.1.0=hdf63c60_0 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=9.1.0=hdf63c60_0 + - libtiff=4.0.10=h2733197_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.9=hea5a465_1 + - libxslt=1.1.33=h7d1a2b0_0 + - lxml=4.3.3=py36hefd8a0e_0 + - matplotlib=3.1.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=he6710b0_1 + - networkx=2.3=py_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36h7e9f1db_0 + - numpy-base=1.16.4=py36hde5b4d6_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h7b6447c_1 + - pcre=8.43=he6710b0_0 + - pillow=6.0.0=py36h34e0f95_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h7b6447c_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.7.0=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=h0371630_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1.2=py36h7b6447c_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.21.1=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - sqlite=3.28.0=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h7b6447c_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.3.7=h0b5b093_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.7=py36_0 + - cfitsio=3.440=2 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - d2to1=0.2.12=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsblender=0.3.6=py36_0 + - fitsverify=4.18=6 + - gwcs=0.11.0=py36_0 + - hstcal=2.3.0=0 + - nictools=1.1.4=py36_0 + - parsley=1.3=py36_1 + - photutils=0.7=py36_0 + - pysynphot=0.9.14=py36_0 + - reftools=1.7.4=py36_1 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.17=py36_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.6=py36_0 + - stsci-hst=3.1.1=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.3=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.4=py36_0 + - stsci.tools=3.6.0=py36_0 + - tweakwcs=0.5.1=py36_0 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - drizzlepac=3.0.3=py36_0 + - stwcs=1.5.2=py36_0 + - pip: + - dask==1.2.2 +prefix: /data1/jenkins/workspace/Sandbox/HSTDP_delivery_merge/miniconda/envs/hstdp-2019.3c-linux-py36.00 diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.01.pip b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.01.pip new file mode 100644 index 0000000..c665e52 --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.01.pip @@ -0,0 +1,95 @@ +acstools==3.0.0 +asdf==2.3.3 +asn1crypto==0.24.0 +astropy==3.2.1 +astroquery==0.3.9 +atomicwrites==1.3.0 +attrs==19.1.0 +beautifulsoup4==4.7.1 +calcos==3.3.7 +certifi==2019.3.9 +cffi==1.12.3 +chardet==3.0.4 +cloudpickle==1.0.0 +costools==1.2.3 +crds==7.3.3 +cryptography==2.6.1 +cycler==0.10.0 +Cython==0.29.8 +cytoolz==0.9.0.1 +d2to1==0.2.12 +dask==1.2.2 +decorator==4.4.0 +drizzlepac==3.0.4 +entrypoints==0.3 +filelock==3.0.10 +fitsblender==0.3.6 +gwcs==0.11.0 +html5lib==1.0.1 +idna==2.8 +imageio==2.5.0 +joblib==0.13.2 +jsonschema==2.6.0 +keyring==18.0.0 +kiwisolver==1.1.0 +lxml==4.3.3 +matplotlib==3.1.0 +mkl-fft==1.0.12 +mkl-random==1.0.2 +more-itertools==7.0.0 +networkx==2.3 +nictools==1.1.4 +nose==1.3.7 +numpy==1.16.4 +olefile==0.46 +Parsley==1.3 +photutils==0.7 +Pillow==6.0.0 +pluggy==0.11.0 +psutil==5.6.2 +py==1.8.0 +pycparser==2.19 +pyOpenSSL==19.0.0 +pyparsing==2.4.0 +PySocks==1.7.0 +pysynphot==0.9.14 +pytest==4.5.0 +pytest-arraydiff==0.3 +pytest-astropy==0.5.0 +pytest-doctestplus==0.3.0 +pytest-openfiles==0.3.2 +pytest-remotedata==0.3.1 +python-dateutil==2.8.0 +pytz==2019.1 +PyWavelets==1.0.3 +PyYAML==5.1.2 +reftools==1.7.4 +requests==2.21.0 +scikit-image==0.15.0 +scikit-learn==0.21.1 +scipy==1.2.1 +SecretStorage==2.3.1 +semantic-version==2.6.0 +six==1.12.0 +soupsieve==1.8 +spherical-geometry==1.2.17 +stistools==1.3.0 +stregion==1.1.6 +stsci.convolve==2.2.2 +stsci.distutils==0.3.8.dev0 +stsci.image==2.3.3 +stsci.imagemanip==1.1.4 +stsci.imagestats==1.6.2 +stsci.ndimage==0.10.3 +stsci.skypac==1.0.4 +stsci.stimage==0.2.4 +stsci.tools==3.6.0 +stwcs==1.5.2 +toolz==0.9.0 +tornado==6.0.2 +tweakwcs==0.5.1 +urllib3==1.24.2 +wcwidth==0.1.7 +webencodings==0.5.1 +wfc3tools==1.3.5 +wfpc2tools==1.0.4 diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.01.txt b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.01.txt new file mode 100644 index 0000000..da3122c --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.01.txt @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/_libgcc_mutex-0.1-main.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/hstcal-2.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libxml2-2.9.9-hea5a465_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/chardet-3.0.4-py36_1003.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pyyaml-5.1.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/html5lib-1.0.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/gwcs-0.11.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/pysynphot-0.9.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/spherical-geometry-1.2.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stregion-1.1.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/fitsblender-0.3.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/photutils-0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.image-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/linux-64/stwcs-1.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/linux-64/drizzlepac-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci-hst-3.1.1-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.01.yml b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.01.yml new file mode 100644 index 0000000..77222e9 --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-linux-py36.01.yml @@ -0,0 +1,154 @@ +name: hstdp-2019.3c-linux-py36.00 +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - _libgcc_mutex=0.1=main + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h7b6447c_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36h2e261b9_0 + - chardet=3.0.4=py36_1003 + - cloudpickle=1.0.0=py_0 + - cryptography=2.6.1=py36h1ba5d50_0 + - cycler=0.10.0=py36_0 + - cython=0.29.8=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h746ee38_0 + - decorator=4.4.0=py36_1 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.10=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py_0 + - icu=58.2=h9c2bf20_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36he6710b0_0 + - libedit=3.1.20181209=hc058e9b_0 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=9.1.0=hdf63c60_0 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=9.1.0=hdf63c60_0 + - libtiff=4.0.10=h2733197_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.9=hea5a465_1 + - libxslt=1.1.33=h7d1a2b0_0 + - lxml=4.3.3=py36hefd8a0e_0 + - matplotlib=3.1.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=he6710b0_1 + - networkx=2.3=py_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36h7e9f1db_0 + - numpy-base=1.16.4=py36hde5b4d6_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h7b6447c_1 + - pcre=8.43=he6710b0_0 + - pillow=6.0.0=py36h34e0f95_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h7b6447c_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.7.0=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=h0371630_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1.2=py36h7b6447c_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.21.1=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - sqlite=3.28.0=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h7b6447c_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.3.7=h0b5b093_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.7=py36_0 + - cfitsio=3.440=2 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - d2to1=0.2.12=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsblender=0.3.6=py36_0 + - fitsverify=4.18=6 + - gwcs=0.11.0=py36_0 + - hstcal=2.3.0=0 + - nictools=1.1.4=py36_0 + - parsley=1.3=py36_1 + - photutils=0.7=py36_0 + - pysynphot=0.9.14=py36_0 + - reftools=1.7.4=py36_1 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.17=py36_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.6=py36_0 + - stsci-hst=3.1.1=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.3=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.4=py36_0 + - stsci.tools=3.6.0=py36_0 + - tweakwcs=0.5.1=py36_0 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - drizzlepac=3.0.4=py36_0 + - stwcs=1.5.2=py36_0 + - pip: + - dask==1.2.2 +prefix: /data1/jenkins/workspace/Sandbox/HSTDP_delivery_merge/miniconda/envs/hstdp-2019.3c-linux-py36.00 diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.00.pip b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.00.pip new file mode 100644 index 0000000..cba75da --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.00.pip @@ -0,0 +1,94 @@ +acstools==3.0.0 +asdf==2.3.3 +asn1crypto==0.24.0 +astropy==3.2.1 +astroquery==0.3.9 +atomicwrites==1.3.0 +attrs==19.1.0 +beautifulsoup4==4.7.1 +calcos==3.3.7 +certifi==2019.3.9 +cffi==1.12.3 +chardet==3.0.4 +cloudpickle==1.0.0 +costools==1.2.3 +crds==7.3.3 +cryptography==2.6.1 +cycler==0.10.0 +Cython==0.29.8 +cytoolz==0.9.0.1 +d2to1==0.2.12 +dask==1.2.2 +decorator==4.4.0 +drizzlepac==3.0.3 +entrypoints==0.3 +filelock==3.0.10 +fitsblender==0.3.6 +gwcs==0.11.0 +html5lib==1.0.1 +idna==2.8 +imageio==2.5.0 +joblib==0.13.2 +jsonschema==2.6.0 +keyring==18.0.0 +kiwisolver==1.1.0 +lxml==4.3.3 +matplotlib==3.1.0 +mkl-fft==1.0.12 +mkl-random==1.0.2 +more-itertools==7.0.0 +networkx==2.3 +nictools==1.1.4 +nose==1.3.7 +numpy==1.16.4 +olefile==0.46 +Parsley==1.3 +photutils==0.7 +Pillow==6.0.0 +pluggy==0.11.0 +psutil==5.6.2 +py==1.8.0 +pycparser==2.19 +pyOpenSSL==19.0.0 +pyparsing==2.4.0 +PySocks==1.7.0 +pysynphot==0.9.14 +pytest==4.5.0 +pytest-arraydiff==0.3 +pytest-astropy==0.5.0 +pytest-doctestplus==0.3.0 +pytest-openfiles==0.3.2 +pytest-remotedata==0.3.1 +python-dateutil==2.8.0 +pytz==2019.1 +PyWavelets==1.0.3 +PyYAML==5.1.2 +reftools==1.7.4 +requests==2.21.0 +scikit-image==0.15.0 +scikit-learn==0.21.1 +scipy==1.2.1 +semantic-version==2.6.0 +six==1.12.0 +soupsieve==1.8 +spherical-geometry==1.2.17 +stistools==1.3.0 +stregion==1.1.6 +stsci.convolve==2.2.2 +stsci.distutils==0.3.8.dev0 +stsci.image==2.3.3 +stsci.imagemanip==1.1.4 +stsci.imagestats==1.6.2 +stsci.ndimage==0.10.3 +stsci.skypac==1.0.4 +stsci.stimage==0.2.4 +stsci.tools==3.6.0 +stwcs==1.5.2 +toolz==0.9.0 +tornado==6.0.2 +tweakwcs==0.5.1 +urllib3==1.24.2 +wcwidth==0.1.7 +webencodings==0.5.1 +wfc3tools==1.3.5 +wfpc2tools==1.0.4 diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.00.txt b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.00.txt new file mode 100644 index 0000000..e9f94d5 --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.00.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hf6e021a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/hstcal-2.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1003.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-5.1.2-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/html5lib-1.0.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.11.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pysynphot-0.9.14-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/reftools-1.7.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.17-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stregion-1.1.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/acstools-3.0.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/calcos-3.3.7-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.7-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stistools-1.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.5.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/costools-1.2.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-3.0.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci-hst-3.1.1-py36_0.tar.bz2 diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.00.yml b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.00.yml new file mode 100644 index 0000000..95755b8 --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.00.yml @@ -0,0 +1,152 @@ +name: hstdp-2019.3c-osx-py36.00 +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h1de35cc_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36hb5b8e2f_0 + - chardet=3.0.4=py36_1003 + - cloudpickle=1.0.0=py_0 + - cryptography=2.6.1=py36ha12b0ac_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29.8=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h90a0687_0 + - decorator=4.4.0=py36_1 + - entrypoints=0.3=py36_0 + - expat=2.2.6=h0a44026_0 + - filelock=3.0.10=py36_0 + - fontconfig=2.13.0=h5d5b041_1 + - freetype=2.9.1=hb4e5f40_0 + - gettext=0.19.8.1=h15daf44_3 + - glib=2.56.2=hd9629dc_0 + - gst-plugins-base=1.14.0=h29ae3d9_1 + - gstreamer=1.14.0=h415b841_1 + - html5lib=1.0.1=py_0 + - icu=58.2=h4b95b61_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36h0a44026_0 + - libcxx=4.0.1=hcfea43d_1 + - libcxxabi=4.0.1=hcfea43d_1 + - libedit=3.1.20181209=hb402a30_0 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.10=hcb84e12_2 + - libuuid=1.0.3=h6bb4b03_2 + - libxml2=2.9.9=hf6e021a_1 + - libxslt=1.1.33=h33a18ac_0 + - llvm-openmp=4.0.1=hcfea43d_1 + - lxml=4.3.3=py36hef8c89e_0 + - matplotlib=3.1.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=h0a44026_1 + - networkx=2.3=py_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36hacdab7b_0 + - numpy-base=1.16.4=py36h6575580_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h1de35cc_1 + - pcre=8.43=h0a44026_0 + - pillow=6.0.0=py36hb68e598_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h1de35cc_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h655552a_2 + - pysocks=1.7.0=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=haf84260_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1.2=py36h1de35cc_0 + - qt=5.9.7=h468cd18_1 + - readline=7.0=h1de35cc_5 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.21.1=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36h0a44026_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - sqlite=3.28.0=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h1de35cc_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36h8c6ec74_0 + - webencodings=0.5.1=py36_1 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=h1de35cc_3 + - zstd=1.3.7=h5bba6e5_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.7=py36_0 + - cfitsio=3.440=1 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - d2to1=0.2.12=py36_0 + - fitsblender=0.3.6=py36_0 + - fitsverify=4.18=6 + - gwcs=0.11.0=py36_0 + - hstcal=2.3.0=0 + - nictools=1.1.4=py36_0 + - parsley=1.3=py36_1 + - photutils=0.7=py36_0 + - pysynphot=0.9.14=py36_0 + - reftools=1.7.4=py36_1 + - spherical-geometry=1.2.17=py36_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.6=py36_0 + - stsci-hst=3.1.1=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.3=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.4=py36_0 + - stsci.tools=3.6.0=py36_0 + - tweakwcs=0.5.1=py36_0 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - drizzlepac=3.0.3=py36_0 + - stwcs=1.5.2=py36_0 + - pip: + - dask==1.2.2 +prefix: /Users/iraf/build/boyle/workspace/Sandbox/HSTDP_delivery_merge/miniconda/envs/hstdp-2019.3c-osx-py36.00 diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.01.pip b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.01.pip new file mode 100644 index 0000000..d764030 --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.01.pip @@ -0,0 +1,94 @@ +acstools==3.0.0 +asdf==2.3.3 +asn1crypto==0.24.0 +astropy==3.2.1 +astroquery==0.3.9 +atomicwrites==1.3.0 +attrs==19.1.0 +beautifulsoup4==4.7.1 +calcos==3.3.7 +certifi==2019.3.9 +cffi==1.12.3 +chardet==3.0.4 +cloudpickle==1.0.0 +costools==1.2.3 +crds==7.3.3 +cryptography==2.6.1 +cycler==0.10.0 +Cython==0.29.8 +cytoolz==0.9.0.1 +d2to1==0.2.12 +dask==1.2.2 +decorator==4.4.0 +drizzlepac==3.0.4 +entrypoints==0.3 +filelock==3.0.10 +fitsblender==0.3.6 +gwcs==0.11.0 +html5lib==1.0.1 +idna==2.8 +imageio==2.5.0 +joblib==0.13.2 +jsonschema==2.6.0 +keyring==18.0.0 +kiwisolver==1.1.0 +lxml==4.3.3 +matplotlib==3.1.0 +mkl-fft==1.0.12 +mkl-random==1.0.2 +more-itertools==7.0.0 +networkx==2.3 +nictools==1.1.4 +nose==1.3.7 +numpy==1.16.4 +olefile==0.46 +Parsley==1.3 +photutils==0.7 +Pillow==6.0.0 +pluggy==0.11.0 +psutil==5.6.2 +py==1.8.0 +pycparser==2.19 +pyOpenSSL==19.0.0 +pyparsing==2.4.0 +PySocks==1.7.0 +pysynphot==0.9.14 +pytest==4.5.0 +pytest-arraydiff==0.3 +pytest-astropy==0.5.0 +pytest-doctestplus==0.3.0 +pytest-openfiles==0.3.2 +pytest-remotedata==0.3.1 +python-dateutil==2.8.0 +pytz==2019.1 +PyWavelets==1.0.3 +PyYAML==5.1.2 +reftools==1.7.4 +requests==2.21.0 +scikit-image==0.15.0 +scikit-learn==0.21.1 +scipy==1.2.1 +semantic-version==2.6.0 +six==1.12.0 +soupsieve==1.8 +spherical-geometry==1.2.17 +stistools==1.3.0 +stregion==1.1.6 +stsci.convolve==2.2.2 +stsci.distutils==0.3.8.dev0 +stsci.image==2.3.3 +stsci.imagemanip==1.1.4 +stsci.imagestats==1.6.2 +stsci.ndimage==0.10.3 +stsci.skypac==1.0.4 +stsci.stimage==0.2.4 +stsci.tools==3.6.0 +stwcs==1.5.2 +toolz==0.9.0 +tornado==6.0.2 +tweakwcs==0.5.1 +urllib3==1.24.2 +wcwidth==0.1.7 +webencodings==0.5.1 +wfc3tools==1.3.5 +wfpc2tools==1.0.4 diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.01.txt b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.01.txt new file mode 100644 index 0000000..c73adeb --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.01.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libxml2-2.9.9-hf6e021a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/hstcal-2.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/chardet-3.0.4-py36_1003.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pyyaml-5.1.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/html5lib-1.0.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/gwcs-0.11.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/pysynphot-0.9.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/spherical-geometry-1.2.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stregion-1.1.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/fitsblender-0.3.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/photutils-0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.image-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/osx-64/stwcs-1.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/osx-64/drizzlepac-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci-hst-3.1.1-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.01.yml b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.01.yml new file mode 100644 index 0000000..a1848c6 --- /dev/null +++ b/hstdp/2019.3c/dev/hstdp-2019.3c-osx-py36.01.yml @@ -0,0 +1,152 @@ +name: hstdp-2019.3c-osx-py36.00 +channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline +dependencies: + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h1de35cc_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36hb5b8e2f_0 + - chardet=3.0.4=py36_1003 + - cloudpickle=1.0.0=py_0 + - cryptography=2.6.1=py36ha12b0ac_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29.8=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h90a0687_0 + - decorator=4.4.0=py36_1 + - entrypoints=0.3=py36_0 + - expat=2.2.6=h0a44026_0 + - filelock=3.0.10=py36_0 + - fontconfig=2.13.0=h5d5b041_1 + - freetype=2.9.1=hb4e5f40_0 + - gettext=0.19.8.1=h15daf44_3 + - glib=2.56.2=hd9629dc_0 + - gst-plugins-base=1.14.0=h29ae3d9_1 + - gstreamer=1.14.0=h415b841_1 + - html5lib=1.0.1=py_0 + - icu=58.2=h4b95b61_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36h0a44026_0 + - libcxx=4.0.1=hcfea43d_1 + - libcxxabi=4.0.1=hcfea43d_1 + - libedit=3.1.20181209=hb402a30_0 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.10=hcb84e12_2 + - libuuid=1.0.3=h6bb4b03_2 + - libxml2=2.9.9=hf6e021a_1 + - libxslt=1.1.33=h33a18ac_0 + - llvm-openmp=4.0.1=hcfea43d_1 + - lxml=4.3.3=py36hef8c89e_0 + - matplotlib=3.1.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=h0a44026_1 + - networkx=2.3=py_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36hacdab7b_0 + - numpy-base=1.16.4=py36h6575580_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h1de35cc_1 + - pcre=8.43=h0a44026_0 + - pillow=6.0.0=py36hb68e598_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h1de35cc_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h655552a_2 + - pysocks=1.7.0=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=haf84260_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1.2=py36h1de35cc_0 + - qt=5.9.7=h468cd18_1 + - readline=7.0=h1de35cc_5 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.21.1=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36h0a44026_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - sqlite=3.28.0=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h1de35cc_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36h8c6ec74_0 + - webencodings=0.5.1=py36_1 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=h1de35cc_3 + - zstd=1.3.7=h5bba6e5_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.7=py36_0 + - cfitsio=3.440=1 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - d2to1=0.2.12=py36_0 + - fitsblender=0.3.6=py36_0 + - fitsverify=4.18=6 + - gwcs=0.11.0=py36_0 + - hstcal=2.3.0=0 + - nictools=1.1.4=py36_0 + - parsley=1.3=py36_1 + - photutils=0.7=py36_0 + - pysynphot=0.9.14=py36_0 + - reftools=1.7.4=py36_1 + - spherical-geometry=1.2.17=py36_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.6=py36_0 + - stsci-hst=3.1.1=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.3=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.4=py36_0 + - stsci.tools=3.6.0=py36_0 + - tweakwcs=0.5.1=py36_0 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - drizzlepac=3.0.4=py36_0 + - stwcs=1.5.2=py36_0 + - pip: + - dask==1.2.2 +prefix: /Users/iraf/build/boyle/workspace/Sandbox/HSTDP_delivery_merge/miniconda/envs/hstdp-2019.3c-osx-py36.00 diff --git a/hstdp/2019.3c/hstdp-2019.3c_00.yml b/hstdp/2019.3c/hstdp-2019.3c_00.yml new file mode 100644 index 0000000..14a324d --- /dev/null +++ b/hstdp/2019.3c/hstdp-2019.3c_00.yml @@ -0,0 +1,222 @@ +delivery_name: hstdp +delivery_version: 2019.3c +delivery_rev: 0 +delivery_python: 3.6.8 + +base_spec: "/dev/null" # no base spec +on_error: "exit" + +runtime: + TEST_BIGDATA: "https://bytesalad.stsci.edu/artifactory" + crrefer: "/grp/hst/cdbs/" + iref: "/grp/hst/cdbs/iref/" + jref: "/grp/hst/cdbs/jref/" + lref: "/grp/hst/cdbs/lref/" + nref: "/grp/hst/cdbs/nref/" + oref: "/grp/hst/cdbs/oref/" + uref: "/grp/hst/cdbs/uref/" + xref: "/grp/hst/cdbs/xref/" + yref: "/grp/hst/cdbs/yref/" + zref: "/grp/hst/cdbs/zref/" + +conda_channels: + - http://ssb.stsci.edu/astroconda + - defaults + - http://ssb.stsci.edu/astroconda-pipeline + +conda_requirements: + - asn1crypto=0.24.0 + - astropy=3.2.1 + - atomicwrites=1.3.0 + - attrs=19.1.0 + - beautifulsoup4=4.7.1 + - blas=1.0=mkl + - ca-certificates=2019.1.23 + - certifi=2019.3.9 + - cffi=1.12.3 + - chardet=3.0.4 + - cloudpickle=1.0.0 + - cryptography=2.6.1 + - cycler=0.10.0 + - cython=0.29.8 + - cytoolz=0.9.0.1 + - dask-core=1.2.2 + - dbus=1.13.6 + - decorator=4.4.0 + - entrypoints=0.3 + - expat=2.2.6 + - filelock=3.0.10 + - fontconfig=2.13.0 + - freetype=2.9.1 + - glib=2.56.2 + - gst-plugins-base + - gstreamer=1.14.0 + - html5lib=1.0.1 + - icu=58.2 + - idna=2.8 + - imageio=2.5.0 + - intel-openmp=2019.3 + - joblib=0.13.2 + - jpeg=9b + - jsonschema=2.6.0 + - keyring=18.0.0 + - kiwisolver=1.1.0 + - libedit=3.1.20181209 + - libffi=3.2.1 + - libpng=1.6.37 + - libtiff=4.0.10 + - libuuid=1.0.3 + - libxml2=2.9.9 + - libxslt=1.1.33 + - lxml=4.3.3 + - matplotlib=3.1.0 + - mkl=2019.3=199 + - mkl_fft=1.0.12 + - mkl_random=1.0.2 + - more-itertools=7.0.0 + - ncurses=6.1 + - networkx=2.3 + - nose=1.3.7 + - numpy=1.16.4 + - numpy-base=1.16.4 + - olefile=0.46 + - openssl=1.1.1c + - pcre=8.43 + - pillow=6.0.0 + - pip=19.1.1 + - pluggy=0.11.0 + - psutil=5.6.2 + - py=1.8.0 + - pycparser=2.19 + - pyopenssl=19.0.0 + - pyparsing=2.4.0 + - pyqt=5.9.2 + - pysocks=1.7.0 + - pytest=4.5.0 + - pytest-arraydiff=0.3 + - pytest-astropy=0.5.0 + - pytest-doctestplus=0.3.0 + - pytest-openfiles=0.3.2 + - pytest-remotedata=0.3.1 + - python-dateutil=2.8.0 + - pytz=2019.1 + - pywavelets=1.0.3 + - pyyaml=5.1 + - qt=5.9.7 + - readline=7.0 + - requests=2.21.0 + - scikit-image=0.15.0 + - scikit-learn=0.21.1 + - scipy=1.2.1 + - semantic_version=2.6.0 + - setuptools=41.0.1 + - sip=4.19.8 + - six=1.12.0 + - soupsieve=1.8 + - sqlite=3.28.0 + - tk=8.6.8 + - toolz=0.9.0 + - tornado=6.0.2 + - urllib3=1.24.2 + - wcwidth=0.1.7 + - webencodings=0.5.1 + - wheel=0.33.4 + - xz=5.2.4 + - yaml=0.1.7 + - zlib=1.2.11 + - zstd=1.3.7 + - acstools=3.0.0 + - asdf=2.3.3 + - astroquery=0.3.9 + - calcos=3.3.7 + - cfitsio=3.440 + - costools=1.2.3 + - crds=7.3.3 + - d2to1=0.2.12 + - fitsverify=4.18 + - gwcs=0.11.0 + - hstcal=2.3.0 + - nictools=1.1.4 + - parsley=1.3 + - pysynphot=0.9.14 + - reftools=1.7.4 + - spherical-geometry=1.2.17 + - stistools=1.3.0 + - stregion=1.1.6 + - stsci-hst=3.1.1 + - stsci.convolve=2.2.2 + - stsci.distutils=0.3.8 + - stsci.image=2.3.3 + - stsci.imagemanip=1.1.4 + - stsci.imagestats=1.6.2 + - stsci.ndimage=0.10.1 + - stsci.skypac=1.0.4 + - stsci.stimage=0.2.4 + - tweakwcs=0.5.1 + - wfc3tools=1.3.5 + - wfpc2tools=1.0.4 + - drizzlepac=3.0.3 + - fitsblender=0.3.6 + - photutils=0.7 + - stsci.tools=3.6.0 + - stwcs=1.5.2 + +#pip_index: +# - https://bytesalad.stsci.edu/artifactory/api/pypi/datb-pypi-virtual + +#pip_requirements: +# - + +run_tests: true +test_program: "pytest" +test_filter_git_orgs: + - spacetelescope + +test_args: "-v --bigdata --junit-xml=junit/results.xml --junit-prefix=${NODE_NAME}" + +test_conda_requirements: + - pytest<4.5.0 + +test_pip_requirements: + - ci_watson + - stsci.distutils + +test_extended: + asdf: + commands: + - pip install astropy_helpers + - pip install importlib_resources + + crds: + runtime: + CRDS_SERVER_URL: "https://hst-crds.stsci.edu" + CRDS_TEST_ROOT: "./testroot" + commands: + - pip install mock + - mkdir -p ${CRDS_TEST_ROOT} + - ./setup_test_cache ${CRDS_TEST_ROOT} + + pysynphot: + # tests are too old + test_args: "--ignore-glob=*" + runtime: + PYSYN_CDBS: "/grp/hst/cdbs/" + + stregion: + # deprecated package (used by drizzlepac) + # tests are all broken (missing input data) + test_args: "--ignore-glob=*" + + stsci.distutils: + # deprecated package + # tests are all broken + test_args: "--ignore-glob=*" + + stsci.ndimage: + # deprecated package (unused) + # tests are all broken + test_args: "--ignore-glob=*" + + stsci.tools: + test_args: "--ignore-glob=*test_tkrotext* --ignore-glob=*test_minmatch*" + diff --git a/hstdp/2019.3c/latest-linux b/hstdp/2019.3c/latest-linux new file mode 100644 index 0000000..da3122c --- /dev/null +++ b/hstdp/2019.3c/latest-linux @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/_libgcc_mutex-0.1-main.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/hstcal-2.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libxml2-2.9.9-hea5a465_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/chardet-3.0.4-py36_1003.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pyyaml-5.1.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/html5lib-1.0.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/gwcs-0.11.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/pysynphot-0.9.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/spherical-geometry-1.2.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stregion-1.1.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/fitsblender-0.3.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/photutils-0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.image-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/linux-64/stwcs-1.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/linux-64/drizzlepac-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci-hst-3.1.1-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3c/latest-osx b/hstdp/2019.3c/latest-osx new file mode 100644 index 0000000..c73adeb --- /dev/null +++ b/hstdp/2019.3c/latest-osx @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libxml2-2.9.9-hf6e021a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/hstcal-2.3.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/chardet-3.0.4-py36_1003.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pyyaml-5.1.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/html5lib-1.0.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/gwcs-0.11.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/pysynphot-0.9.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/spherical-geometry-1.2.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stregion-1.1.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/fitsblender-0.3.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/photutils-0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.image-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/osx-64/stwcs-1.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/osx-64/drizzlepac-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci-hst-3.1.1-py36_0.tar.bz2
\ No newline at end of file diff --git a/hstdp/2019.3c/release_notes.md b/hstdp/2019.3c/release_notes.md new file mode 100644 index 0000000..fb0e7aa --- /dev/null +++ b/hstdp/2019.3c/release_notes.md @@ -0,0 +1,4 @@ +# Release Notes + +* 2019/08/30 - Iteration 1 +* 2019/08/29 - Iteration 0 diff --git a/hstdp/2019.3c/software_updates.md b/hstdp/2019.3c/software_updates.md new file mode 100644 index 0000000..f93f90d --- /dev/null +++ b/hstdp/2019.3c/software_updates.md @@ -0,0 +1,3 @@ +# drizzlepac version 3.0.4 +# photutils verison 0.7 +# stwcs version 1.5.2 diff --git a/hstdp/2019.4/README.md b/hstdp/2019.4/README.md new file mode 100644 index 0000000..7b55874 --- /dev/null +++ b/hstdp/2019.4/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2019.4 --file http://ssb.stsci.edu/releases/hstdp/2019.4/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2019.4 --file http://ssb.stsci.edu/releases/hstdp/2019.4/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.07-Linux-x86_64.sh +$ bash Anaconda3-2019.07-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.10-Linux-x86_64.sh +$ bash Miniconda3-4.7.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2019.4 --file http://ssb.stsci.edu/releases/hstdp/2019.4/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2019.4 +``` diff --git a/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.00.pip b/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.00.pip new file mode 100644 index 0000000..c665e52 --- /dev/null +++ b/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.00.pip @@ -0,0 +1,95 @@ +acstools==3.0.0 +asdf==2.3.3 +asn1crypto==0.24.0 +astropy==3.2.1 +astroquery==0.3.9 +atomicwrites==1.3.0 +attrs==19.1.0 +beautifulsoup4==4.7.1 +calcos==3.3.7 +certifi==2019.3.9 +cffi==1.12.3 +chardet==3.0.4 +cloudpickle==1.0.0 +costools==1.2.3 +crds==7.3.3 +cryptography==2.6.1 +cycler==0.10.0 +Cython==0.29.8 +cytoolz==0.9.0.1 +d2to1==0.2.12 +dask==1.2.2 +decorator==4.4.0 +drizzlepac==3.0.4 +entrypoints==0.3 +filelock==3.0.10 +fitsblender==0.3.6 +gwcs==0.11.0 +html5lib==1.0.1 +idna==2.8 +imageio==2.5.0 +joblib==0.13.2 +jsonschema==2.6.0 +keyring==18.0.0 +kiwisolver==1.1.0 +lxml==4.3.3 +matplotlib==3.1.0 +mkl-fft==1.0.12 +mkl-random==1.0.2 +more-itertools==7.0.0 +networkx==2.3 +nictools==1.1.4 +nose==1.3.7 +numpy==1.16.4 +olefile==0.46 +Parsley==1.3 +photutils==0.7 +Pillow==6.0.0 +pluggy==0.11.0 +psutil==5.6.2 +py==1.8.0 +pycparser==2.19 +pyOpenSSL==19.0.0 +pyparsing==2.4.0 +PySocks==1.7.0 +pysynphot==0.9.14 +pytest==4.5.0 +pytest-arraydiff==0.3 +pytest-astropy==0.5.0 +pytest-doctestplus==0.3.0 +pytest-openfiles==0.3.2 +pytest-remotedata==0.3.1 +python-dateutil==2.8.0 +pytz==2019.1 +PyWavelets==1.0.3 +PyYAML==5.1.2 +reftools==1.7.4 +requests==2.21.0 +scikit-image==0.15.0 +scikit-learn==0.21.1 +scipy==1.2.1 +SecretStorage==2.3.1 +semantic-version==2.6.0 +six==1.12.0 +soupsieve==1.8 +spherical-geometry==1.2.17 +stistools==1.3.0 +stregion==1.1.6 +stsci.convolve==2.2.2 +stsci.distutils==0.3.8.dev0 +stsci.image==2.3.3 +stsci.imagemanip==1.1.4 +stsci.imagestats==1.6.2 +stsci.ndimage==0.10.3 +stsci.skypac==1.0.4 +stsci.stimage==0.2.4 +stsci.tools==3.6.0 +stwcs==1.5.2 +toolz==0.9.0 +tornado==6.0.2 +tweakwcs==0.5.1 +urllib3==1.24.2 +wcwidth==0.1.7 +webencodings==0.5.1 +wfc3tools==1.3.5 +wfpc2tools==1.0.4 diff --git a/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.00.txt b/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.00.txt new file mode 100644 index 0000000..5109c90 --- /dev/null +++ b/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.00.txt @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/_libgcc_mutex-0.1-main.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libxml2-2.9.9-hea5a465_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/chardet-3.0.4-py36_1003.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pyyaml-5.1.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/html5lib-1.0.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/gwcs-0.11.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/pysynphot-0.9.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/spherical-geometry-1.2.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stregion-1.1.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/fitsblender-0.3.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/photutils-0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.image-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/linux-64/stwcs-1.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/linux-64/drizzlepac-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/linux-64/stsci-hst-3.1.1-py36_0.tar.bz2 diff --git a/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.00.yml b/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.00.yml new file mode 100644 index 0000000..a214670 --- /dev/null +++ b/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.00.yml @@ -0,0 +1,154 @@ +name: hstdp-2019.3c-linux-py36.00 +channels: + - http://ssb.stsci.edu/astroconda-tomb + - defaults + - http://ssb.stsci.edu/astroconda-j-pub-staging +dependencies: + - _libgcc_mutex=0.1=main + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h7b6447c_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36h2e261b9_0 + - chardet=3.0.4=py36_1003 + - cloudpickle=1.0.0=py_0 + - cryptography=2.6.1=py36h1ba5d50_0 + - cycler=0.10.0=py36_0 + - cython=0.29.8=py36he6710b0_0 + - cytoolz=0.9.0.1=py36h14c3975_1 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h746ee38_0 + - decorator=4.4.0=py36_1 + - entrypoints=0.3=py36_0 + - expat=2.2.6=he6710b0_0 + - filelock=3.0.10=py36_0 + - fontconfig=2.13.0=h9420a91_0 + - freetype=2.9.1=h8a8886c_1 + - glib=2.56.2=hd408876_0 + - gst-plugins-base=1.14.0=hbbd80ab_1 + - gstreamer=1.14.0=hb453b48_1 + - html5lib=1.0.1=py_0 + - icu=58.2=h9c2bf20_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=h024ee3a_2 + - jsonschema=2.6.0=py36_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36he6710b0_0 + - libedit=3.1.20181209=hc058e9b_0 + - libffi=3.2.1=hd88cf55_4 + - libgcc=7.2.0=h69d50b8_2 + - libgcc-ng=9.1.0=hdf63c60_0 + - libgfortran-ng=7.3.0=hdf63c60_0 + - libpng=1.6.37=hbc83047_0 + - libstdcxx-ng=9.1.0=hdf63c60_0 + - libtiff=4.0.10=h2733197_2 + - libuuid=1.0.3=h1bed415_2 + - libxcb=1.13=h1bed415_1 + - libxml2=2.9.9=hea5a465_1 + - libxslt=1.1.33=h7d1a2b0_0 + - lxml=4.3.3=py36hefd8a0e_0 + - matplotlib=3.1.0=py36h5429711_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36ha843d7b_0 + - mkl_random=1.0.2=py36hd81dba3_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=he6710b0_1 + - networkx=2.3=py_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36h7e9f1db_0 + - numpy-base=1.16.4=py36hde5b4d6_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h7b6447c_1 + - pcre=8.43=he6710b0_0 + - pillow=6.0.0=py36h34e0f95_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h7b6447c_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h05f1152_2 + - pysocks=1.7.0=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=h0371630_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36hdd07704_1 + - pyyaml=5.1.2=py36h7b6447c_0 + - qt=5.9.7=h5867ecd_1 + - readline=7.0=h7b6447c_5 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36he6710b0_0 + - scikit-learn=0.21.1=py36hd81dba3_0 + - scipy=1.2.1=py36h7c811a0_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36hf484d3e_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - sqlite=3.28.0=h7b6447c_0 + - tk=8.6.8=hbc83047_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h7b6447c_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36_0 + - webencodings=0.5.1=py36_1 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h14c3975_4 + - yaml=0.1.7=had09818_2 + - zlib=1.2.11=h7b6447c_3 + - zstd=1.3.7=h0b5b093_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.7=py36_0 + - cfitsio=3.440=2 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - d2to1=0.2.12=py36_0 + - dbus-glib=0.108=0 + - dbus-python=1.2.4=py36_1 + - fitsblender=0.3.6=py36_0 + - fitsverify=4.18=6 + - gwcs=0.11.0=py36_0 + - hstcal=2.3.1=0 + - nictools=1.1.4=py36_0 + - parsley=1.3=py36_1 + - photutils=0.7=py36_0 + - pysynphot=0.9.14=py36_0 + - reftools=1.7.4=py36_1 + - secretstorage=2.3.1=py36_1 + - spherical-geometry=1.2.17=py36_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.6=py36_0 + - stsci-hst=3.1.1=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.3=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.4=py36_0 + - stsci.tools=3.6.0=py36_0 + - tweakwcs=0.5.1=py36_0 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - drizzlepac=3.0.4=py36_0 + - stwcs=1.5.2=py36_0 + - pip: + - dask==1.2.2 +prefix: /data1/jenkins/workspace/Sandbox/HSTDP_delivery_merge/miniconda/envs/hstdp-2019.3c-linux-py36.00 diff --git a/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.01.txt b/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.01.txt new file mode 100644 index 0000000..4a3c3fa --- /dev/null +++ b/hstdp/2019.4/dev/hstdp-2019.4-linux-py36.01.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/drizzlepac-3.0.2-py36_0.tar.bz2 diff --git a/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.00.pip b/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.00.pip new file mode 100644 index 0000000..d764030 --- /dev/null +++ b/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.00.pip @@ -0,0 +1,94 @@ +acstools==3.0.0 +asdf==2.3.3 +asn1crypto==0.24.0 +astropy==3.2.1 +astroquery==0.3.9 +atomicwrites==1.3.0 +attrs==19.1.0 +beautifulsoup4==4.7.1 +calcos==3.3.7 +certifi==2019.3.9 +cffi==1.12.3 +chardet==3.0.4 +cloudpickle==1.0.0 +costools==1.2.3 +crds==7.3.3 +cryptography==2.6.1 +cycler==0.10.0 +Cython==0.29.8 +cytoolz==0.9.0.1 +d2to1==0.2.12 +dask==1.2.2 +decorator==4.4.0 +drizzlepac==3.0.4 +entrypoints==0.3 +filelock==3.0.10 +fitsblender==0.3.6 +gwcs==0.11.0 +html5lib==1.0.1 +idna==2.8 +imageio==2.5.0 +joblib==0.13.2 +jsonschema==2.6.0 +keyring==18.0.0 +kiwisolver==1.1.0 +lxml==4.3.3 +matplotlib==3.1.0 +mkl-fft==1.0.12 +mkl-random==1.0.2 +more-itertools==7.0.0 +networkx==2.3 +nictools==1.1.4 +nose==1.3.7 +numpy==1.16.4 +olefile==0.46 +Parsley==1.3 +photutils==0.7 +Pillow==6.0.0 +pluggy==0.11.0 +psutil==5.6.2 +py==1.8.0 +pycparser==2.19 +pyOpenSSL==19.0.0 +pyparsing==2.4.0 +PySocks==1.7.0 +pysynphot==0.9.14 +pytest==4.5.0 +pytest-arraydiff==0.3 +pytest-astropy==0.5.0 +pytest-doctestplus==0.3.0 +pytest-openfiles==0.3.2 +pytest-remotedata==0.3.1 +python-dateutil==2.8.0 +pytz==2019.1 +PyWavelets==1.0.3 +PyYAML==5.1.2 +reftools==1.7.4 +requests==2.21.0 +scikit-image==0.15.0 +scikit-learn==0.21.1 +scipy==1.2.1 +semantic-version==2.6.0 +six==1.12.0 +soupsieve==1.8 +spherical-geometry==1.2.17 +stistools==1.3.0 +stregion==1.1.6 +stsci.convolve==2.2.2 +stsci.distutils==0.3.8.dev0 +stsci.image==2.3.3 +stsci.imagemanip==1.1.4 +stsci.imagestats==1.6.2 +stsci.ndimage==0.10.3 +stsci.skypac==1.0.4 +stsci.stimage==0.2.4 +stsci.tools==3.6.0 +stwcs==1.5.2 +toolz==0.9.0 +tornado==6.0.2 +tweakwcs==0.5.1 +urllib3==1.24.2 +wcwidth==0.1.7 +webencodings==0.5.1 +wfc3tools==1.3.5 +wfpc2tools==1.0.4 diff --git a/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.00.txt b/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.00.txt new file mode 100644 index 0000000..5ac48bd --- /dev/null +++ b/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.00.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libxml2-2.9.9-hf6e021a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/chardet-3.0.4-py36_1003.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pyyaml-5.1.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/html5lib-1.0.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.stimage-0.2.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/gwcs-0.11.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/pysynphot-0.9.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/spherical-geometry-1.2.17-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stregion-1.1.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/fitsblender-0.3.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/photutils-0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.image-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/osx-64/stwcs-1.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda-j-pub-staging/osx-64/drizzlepac-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3c/astroconda/osx-64/stsci-hst-3.1.1-py36_0.tar.bz2 diff --git a/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.00.yml b/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.00.yml new file mode 100644 index 0000000..1519afa --- /dev/null +++ b/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.00.yml @@ -0,0 +1,152 @@ +name: hstdp-2019.3c-osx-py36.00 +channels: + - http://ssb.stsci.edu/astroconda-tomb + - defaults + - http://ssb.stsci.edu/astroconda-j-pub-staging +dependencies: + - asn1crypto=0.24.0=py36_0 + - astropy=3.2.1=py36h1de35cc_0 + - atomicwrites=1.3.0=py36_1 + - attrs=19.1.0=py36_1 + - beautifulsoup4=4.7.1=py36_1 + - blas=1.0=mkl + - ca-certificates=2019.1.23=0 + - certifi=2019.3.9=py36_0 + - cffi=1.12.3=py36hb5b8e2f_0 + - chardet=3.0.4=py36_1003 + - cloudpickle=1.0.0=py_0 + - cryptography=2.6.1=py36ha12b0ac_0 + - cycler=0.10.0=py36hfc81398_0 + - cython=0.29.8=py36h0a44026_0 + - cytoolz=0.9.0.1=py36h1de35cc_1 + - dask-core=1.2.2=py_0 + - dbus=1.13.6=h90a0687_0 + - decorator=4.4.0=py36_1 + - entrypoints=0.3=py36_0 + - expat=2.2.6=h0a44026_0 + - filelock=3.0.10=py36_0 + - fontconfig=2.13.0=h5d5b041_1 + - freetype=2.9.1=hb4e5f40_0 + - gettext=0.19.8.1=h15daf44_3 + - glib=2.56.2=hd9629dc_0 + - gst-plugins-base=1.14.0=h29ae3d9_1 + - gstreamer=1.14.0=h415b841_1 + - html5lib=1.0.1=py_0 + - icu=58.2=h4b95b61_1 + - idna=2.8=py36_0 + - imageio=2.5.0=py36_0 + - intel-openmp=2019.3=199 + - joblib=0.13.2=py36_0 + - jpeg=9b=he5867d9_2 + - jsonschema=2.6.0=py36hb385e00_0 + - keyring=18.0.0=py36_0 + - kiwisolver=1.1.0=py36h0a44026_0 + - libcxx=4.0.1=hcfea43d_1 + - libcxxabi=4.0.1=hcfea43d_1 + - libedit=3.1.20181209=hb402a30_0 + - libffi=3.2.1=h475c297_4 + - libgcc=4.8.5=hdbeacc1_10 + - libgfortran=3.0.1=h93005f0_2 + - libiconv=1.15=hdd342a3_7 + - libpng=1.6.37=ha441bb4_0 + - libtiff=4.0.10=hcb84e12_2 + - libuuid=1.0.3=h6bb4b03_2 + - libxml2=2.9.9=hf6e021a_1 + - libxslt=1.1.33=h33a18ac_0 + - llvm-openmp=4.0.1=hcfea43d_1 + - lxml=4.3.3=py36hef8c89e_0 + - matplotlib=3.1.0=py36h54f8f79_0 + - mkl=2019.3=199 + - mkl_fft=1.0.12=py36h5e564d8_0 + - mkl_random=1.0.2=py36h27c97d8_0 + - more-itertools=7.0.0=py36_0 + - ncurses=6.1=h0a44026_1 + - networkx=2.3=py_0 + - nose=1.3.7=py36_2 + - numpy=1.16.4=py36hacdab7b_0 + - numpy-base=1.16.4=py36h6575580_0 + - olefile=0.46=py36_0 + - openssl=1.1.1c=h1de35cc_1 + - pcre=8.43=h0a44026_0 + - pillow=6.0.0=py36hb68e598_0 + - pip=19.1.1=py36_0 + - pluggy=0.11.0=py_0 + - psutil=5.6.2=py36h1de35cc_0 + - py=1.8.0=py36_0 + - pycparser=2.19=py36_0 + - pyopenssl=19.0.0=py36_0 + - pyparsing=2.4.0=py_0 + - pyqt=5.9.2=py36h655552a_2 + - pysocks=1.7.0=py36_0 + - pytest=4.5.0=py36_0 + - pytest-arraydiff=0.3=py36h39e3cac_0 + - pytest-astropy=0.5.0=py36_0 + - pytest-doctestplus=0.3.0=py36_0 + - pytest-openfiles=0.3.2=py36_0 + - pytest-remotedata=0.3.1=py36_0 + - python=3.6.8=haf84260_0 + - python-dateutil=2.8.0=py36_0 + - pytz=2019.1=py_0 + - pywavelets=1.0.3=py36h1d22016_1 + - pyyaml=5.1.2=py36h1de35cc_0 + - qt=5.9.7=h468cd18_1 + - readline=7.0=h1de35cc_5 + - requests=2.21.0=py36_0 + - scikit-image=0.15.0=py36h0a44026_0 + - scikit-learn=0.21.1=py36h27c97d8_0 + - scipy=1.2.1=py36h1410ff5_0 + - semantic_version=2.6.0=py36_0 + - setuptools=41.0.1=py36_0 + - sip=4.19.8=py36h0a44026_0 + - six=1.12.0=py36_0 + - soupsieve=1.8=py36_0 + - sqlite=3.28.0=ha441bb4_0 + - tk=8.6.8=ha441bb4_0 + - toolz=0.9.0=py36_0 + - tornado=6.0.2=py36h1de35cc_0 + - urllib3=1.24.2=py36_0 + - wcwidth=0.1.7=py36h8c6ec74_0 + - webencodings=0.5.1=py36_1 + - wheel=0.33.4=py36_0 + - xz=5.2.4=h1de35cc_4 + - yaml=0.1.7=hc338f04_2 + - zlib=1.2.11=h1de35cc_3 + - zstd=1.3.7=h5bba6e5_0 + - acstools=3.0.0=py36_0 + - asdf=2.3.3=py36_0 + - astroquery=0.3.9=py36_0 + - calcos=3.3.7=py36_0 + - cfitsio=3.440=1 + - costools=1.2.3=py36_0 + - crds=7.3.3=py36_0 + - d2to1=0.2.12=py36_0 + - fitsblender=0.3.6=py36_0 + - fitsverify=4.18=6 + - gwcs=0.11.0=py36_0 + - hstcal=2.3.1=0 + - nictools=1.1.4=py36_0 + - parsley=1.3=py36_1 + - photutils=0.7=py36_0 + - pysynphot=0.9.14=py36_0 + - reftools=1.7.4=py36_1 + - spherical-geometry=1.2.17=py36_0 + - stistools=1.3.0=py36_0 + - stregion=1.1.6=py36_0 + - stsci-hst=3.1.1=py36_0 + - stsci.convolve=2.2.2=py36_1 + - stsci.distutils=0.3.8=py36_2 + - stsci.image=2.3.3=py36_0 + - stsci.imagemanip=1.1.4=py36_1 + - stsci.imagestats=1.6.2=py36_0 + - stsci.ndimage=0.10.1=py36_3 + - stsci.skypac=1.0.4=py36_0 + - stsci.stimage=0.2.4=py36_0 + - stsci.tools=3.6.0=py36_0 + - tweakwcs=0.5.1=py36_0 + - wfc3tools=1.3.5=py36_0 + - wfpc2tools=1.0.4=py36_0 + - drizzlepac=3.0.4=py36_0 + - stwcs=1.5.2=py36_0 + - pip: + - dask==1.2.2 +prefix: /Users/iraf/build/boyle/workspace/Sandbox/HSTDP_delivery_merge/miniconda/envs/hstdp-2019.3c-osx-py36.00 diff --git a/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.01.txt b/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.01.txt new file mode 100644 index 0000000..45f538b --- /dev/null +++ b/hstdp/2019.4/dev/hstdp-2019.4-osx-py36.01.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/drizzlepac-3.0.2-py36_0.tar.bz2 diff --git a/hstdp/2019.4/hstdp-2019.4-linux-py36.final.txt b/hstdp/2019.4/hstdp-2019.4-linux-py36.final.txt new file mode 100644 index 0000000..3f7cf10 --- /dev/null +++ b/hstdp/2019.4/hstdp-2019.4-linux-py36.final.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/drizzlepac-3.0.2-py36_0.tar.bz2 diff --git a/hstdp/2019.4/hstdp-2019.4-osx-py36.final.txt b/hstdp/2019.4/hstdp-2019.4-osx-py36.final.txt new file mode 100644 index 0000000..0df274c --- /dev/null +++ b/hstdp/2019.4/hstdp-2019.4-osx-py36.final.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/drizzlepac-3.0.2-py36_0.tar.bz2 diff --git a/hstdp/2019.4/latest-linux b/hstdp/2019.4/latest-linux new file mode 100644 index 0000000..3f7cf10 --- /dev/null +++ b/hstdp/2019.4/latest-linux @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/linux-64/drizzlepac-3.0.2-py36_0.tar.bz2 diff --git a/hstdp/2019.4/latest-osx b/hstdp/2019.4/latest-osx new file mode 100644 index 0000000..0df274c --- /dev/null +++ b/hstdp/2019.4/latest-osx @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.4/astroconda/osx-64/drizzlepac-3.0.2-py36_0.tar.bz2 diff --git a/hstdp/2019.4/release_notes.md b/hstdp/2019.4/release_notes.md new file mode 100644 index 0000000..2c687c3 --- /dev/null +++ b/hstdp/2019.4/release_notes.md @@ -0,0 +1,5 @@ +# Release Notes + +* 2019/10/21 - Final +* 2019/10/07 - Iteration 1 +* 2019/09/30 - Iteration 0 diff --git a/hstdp/2019.4/software_updates.md b/hstdp/2019.4/software_updates.md new file mode 100644 index 0000000..fbc8bc9 --- /dev/null +++ b/hstdp/2019.4/software_updates.md @@ -0,0 +1 @@ +# hstcal version 2.3.1 diff --git a/hstdp/2019.5.1/README.md b/hstdp/2019.5.1/README.md new file mode 100644 index 0000000..34c0bf3 --- /dev/null +++ b/hstdp/2019.5.1/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2019.5.1 --file http://ssb.stsci.edu/releases/hstdp/2019.5.1/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2019.5.1 --file http://ssb.stsci.edu/releases/hstdp/2019.5.1/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.12-Linux-x86_64.sh +$ bash Miniconda3-4.7.12-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2019.5.1 --file http://ssb.stsci.edu/releases/hstdp/2019.5.1/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2019.5.1 +``` diff --git a/hstdp/2019.5.1/dev/hstdp-2019.5-linux-py36.00.txt b/hstdp/2019.5.1/dev/hstdp-2019.5-linux-py36.00.txt new file mode 100644 index 0000000..f42bbb6 --- /dev/null +++ b/hstdp/2019.5.1/dev/hstdp-2019.5-linux-py36.00.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/linux-64/drizzlepac-3.1.4-py36_0.tar.bz2 diff --git a/hstdp/2019.5.1/dev/hstdp-2019.5-linux-py36.01.txt b/hstdp/2019.5.1/dev/hstdp-2019.5-linux-py36.01.txt new file mode 100644 index 0000000..9d1fdfe --- /dev/null +++ b/hstdp/2019.5.1/dev/hstdp-2019.5-linux-py36.01.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/linux-64/drizzlepac-3.1.5-py36_0.tar.bz2 diff --git a/hstdp/2019.5.1/dev/hstdp-2019.5-osx-py36.00.txt b/hstdp/2019.5.1/dev/hstdp-2019.5-osx-py36.00.txt new file mode 100644 index 0000000..6be4db4 --- /dev/null +++ b/hstdp/2019.5.1/dev/hstdp-2019.5-osx-py36.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/osx-64/drizzlepac-3.1.4-py36_0.tar.bz2 diff --git a/hstdp/2019.5.1/dev/hstdp-2019.5-osx-py36.01.txt b/hstdp/2019.5.1/dev/hstdp-2019.5-osx-py36.01.txt new file mode 100644 index 0000000..5a1d283 --- /dev/null +++ b/hstdp/2019.5.1/dev/hstdp-2019.5-osx-py36.01.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/osx-64/drizzlepac-3.1.5-py36_0.tar.bz2 diff --git a/hstdp/2019.5.1/hstdp-2019.5.1-linux-py36.final.txt b/hstdp/2019.5.1/hstdp-2019.5.1-linux-py36.final.txt new file mode 100644 index 0000000..b1a0ba8 --- /dev/null +++ b/hstdp/2019.5.1/hstdp-2019.5.1-linux-py36.final.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/drizzlepac-3.1.5-py36_0.tar.bz2 diff --git a/hstdp/2019.5.1/hstdp-2019.5.1-osx-py36.final.txt b/hstdp/2019.5.1/hstdp-2019.5.1-osx-py36.final.txt new file mode 100644 index 0000000..02c42dc --- /dev/null +++ b/hstdp/2019.5.1/hstdp-2019.5.1-osx-py36.final.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/drizzlepac-3.1.5-py36_0.tar.bz2 diff --git a/hstdp/2019.5.1/latest-linux b/hstdp/2019.5.1/latest-linux new file mode 100644 index 0000000..b1a0ba8 --- /dev/null +++ b/hstdp/2019.5.1/latest-linux @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/drizzlepac-3.1.5-py36_0.tar.bz2 diff --git a/hstdp/2019.5.1/latest-osx b/hstdp/2019.5.1/latest-osx new file mode 100644 index 0000000..02c42dc --- /dev/null +++ b/hstdp/2019.5.1/latest-osx @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/drizzlepac-3.1.5-py36_0.tar.bz2 diff --git a/hstdp/2019.5.1/release_notes.md b/hstdp/2019.5.1/release_notes.md new file mode 100644 index 0000000..aa29dd0 --- /dev/null +++ b/hstdp/2019.5.1/release_notes.md @@ -0,0 +1,5 @@ +# Release Notes + +* 2020/02/12 - Final +* 2020/02/05 - Iteration 1 +* 2020/01/16 - Iteration 0 diff --git a/hstdp/2019.5.1/software_updates.md b/hstdp/2019.5.1/software_updates.md new file mode 100644 index 0000000..9df9d46 --- /dev/null +++ b/hstdp/2019.5.1/software_updates.md @@ -0,0 +1 @@ +# drizzlepac version 3.1.5 diff --git a/hstdp/2019.5.2/README.md b/hstdp/2019.5.2/README.md new file mode 100644 index 0000000..84f9947 --- /dev/null +++ b/hstdp/2019.5.2/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2019.5.2 --file http://ssb.stsci.edu/releases/hstdp/2019.5.2/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2019.5.2 --file http://ssb.stsci.edu/releases/hstdp/2019.5.2/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.12-Linux-x86_64.sh +$ bash Miniconda3-4.7.12-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2019.5.2 --file http://ssb.stsci.edu/releases/hstdp/2019.5.2/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2019.5.2 +``` diff --git a/hstdp/2019.5.2/dev/hstdp-2019.5.2-linux-py36.00.txt b/hstdp/2019.5.2/dev/hstdp-2019.5.2-linux-py36.00.txt new file mode 100644 index 0000000..52c946f --- /dev/null +++ b/hstdp/2019.5.2/dev/hstdp-2019.5.2-linux-py36.00.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/drizzlepac-3.1.6-py36_0.tar.bz2 diff --git a/hstdp/2019.5.2/dev/hstdp-2019.5.2-osx-py36.00.txt b/hstdp/2019.5.2/dev/hstdp-2019.5.2-osx-py36.00.txt new file mode 100644 index 0000000..f5a3ba8 --- /dev/null +++ b/hstdp/2019.5.2/dev/hstdp-2019.5.2-osx-py36.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.1/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/osx-64/drizzlepac-3.1.6-py36_0.tar.bz2 diff --git a/hstdp/2019.5.2/hstdp-2019.5.2-linux-py36.final.txt b/hstdp/2019.5.2/hstdp-2019.5.2-linux-py36.final.txt new file mode 100644 index 0000000..36303fb --- /dev/null +++ b/hstdp/2019.5.2/hstdp-2019.5.2-linux-py36.final.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/drizzlepac-3.1.6-py36_0.tar.bz2 diff --git a/hstdp/2019.5.2/hstdp-2019.5.2-osx-py36.final.txt b/hstdp/2019.5.2/hstdp-2019.5.2-osx-py36.final.txt new file mode 100644 index 0000000..763f7e5 --- /dev/null +++ b/hstdp/2019.5.2/hstdp-2019.5.2-osx-py36.final.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/ca-certificates-2019.5.25-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/drizzlepac-3.1.6-py36_0.tar.bz2 diff --git a/hstdp/2019.5.2/latest-linux b/hstdp/2019.5.2/latest-linux new file mode 100644 index 0000000..36303fb --- /dev/null +++ b/hstdp/2019.5.2/latest-linux @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/linux-64/drizzlepac-3.1.6-py36_0.tar.bz2 diff --git a/hstdp/2019.5.2/latest-osx b/hstdp/2019.5.2/latest-osx new file mode 100644 index 0000000..763f7e5 --- /dev/null +++ b/hstdp/2019.5.2/latest-osx @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/ca-certificates-2019.5.25-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5.2/astroconda/osx-64/drizzlepac-3.1.6-py36_0.tar.bz2 diff --git a/hstdp/2019.5.2/release_notes.md b/hstdp/2019.5.2/release_notes.md new file mode 100644 index 0000000..34c91f1 --- /dev/null +++ b/hstdp/2019.5.2/release_notes.md @@ -0,0 +1,4 @@ +# Release Notes + +* 2020/02/20 - Final +* 2020/02/19 - Initial iteration diff --git a/hstdp/2019.5.2/software_updates.md b/hstdp/2019.5.2/software_updates.md new file mode 100644 index 0000000..9c48100 --- /dev/null +++ b/hstdp/2019.5.2/software_updates.md @@ -0,0 +1 @@ +# drizzlepac version 3.1.6 diff --git a/hstdp/2019.5/README.md b/hstdp/2019.5/README.md new file mode 100644 index 0000000..4a4c04e --- /dev/null +++ b/hstdp/2019.5/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each HSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n hstdp-2019.5 --file http://ssb.stsci.edu/releases/hstdp/2019.5/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n hstdp-2019.5 --file http://ssb.stsci.edu/releases/hstdp/2019.5/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.12-Linux-x86_64.sh +$ bash Miniconda3-4.7.12-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n hstdp-2019.5 --file http://ssb.stsci.edu/releases/hstdp/2019.5/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate hstdp-2019.5 +``` diff --git a/hstdp/2019.5/dev/hstdp-2019.5-linux-py36.00.txt b/hstdp/2019.5/dev/hstdp-2019.5-linux-py36.00.txt new file mode 100644 index 0000000..22e893d --- /dev/null +++ b/hstdp/2019.5/dev/hstdp-2019.5-linux-py36.00.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/linux-64/drizzlepac-3.1.0-py36_0.tar.bz2 diff --git a/hstdp/2019.5/dev/hstdp-2019.5-linux-py36.01.txt b/hstdp/2019.5/dev/hstdp-2019.5-linux-py36.01.txt new file mode 100644 index 0000000..05c6756 --- /dev/null +++ b/hstdp/2019.5/dev/hstdp-2019.5-linux-py36.01.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/linux-64/drizzlepac-3.1.1-py36_0.tar.bz2 diff --git a/hstdp/2019.5/dev/hstdp-2019.5-linux-py36.02.txt b/hstdp/2019.5/dev/hstdp-2019.5-linux-py36.02.txt new file mode 100644 index 0000000..f760d8e --- /dev/null +++ b/hstdp/2019.5/dev/hstdp-2019.5-linux-py36.02.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/linux-64/drizzlepac-3.1.3-py36_0.tar.bz2 diff --git a/hstdp/2019.5/dev/hstdp-2019.5-osx-py36.00.txt b/hstdp/2019.5/dev/hstdp-2019.5-osx-py36.00.txt new file mode 100644 index 0000000..44b3597 --- /dev/null +++ b/hstdp/2019.5/dev/hstdp-2019.5-osx-py36.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/photutils-0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/spherical-geometry-1.2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/osx-64/drizzlepac-3.1.0-py36_0.tar.bz2 diff --git a/hstdp/2019.5/dev/hstdp-2019.5-osx-py36.01.txt b/hstdp/2019.5/dev/hstdp-2019.5-osx-py36.01.txt new file mode 100644 index 0000000..7e307c8 --- /dev/null +++ b/hstdp/2019.5/dev/hstdp-2019.5-osx-py36.01.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-j-pub-staging/osx-64/drizzlepac-3.1.1-py36_0.tar.bz2 diff --git a/hstdp/2019.5/dev/hstdp-2019.5-osx-py36.02.txt b/hstdp/2019.5/dev/hstdp-2019.5-osx-py36.02.txt new file mode 100644 index 0000000..cd40a06 --- /dev/null +++ b/hstdp/2019.5/dev/hstdp-2019.5-osx-py36.02.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.3b/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda/osx-64/drizzlepac-3.1.3-py36_0.tar.bz2 diff --git a/hstdp/2019.5/hstdp-2019.5-linux-py36.final.txt b/hstdp/2019.5/hstdp-2019.5-linux-py36.final.txt new file mode 100644 index 0000000..789f97d --- /dev/null +++ b/hstdp/2019.5/hstdp-2019.5-linux-py36.final.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/drizzlepac-3.1.3-py36_0.tar.bz2 diff --git a/hstdp/2019.5/hstdp-2019.5-osx-py36.final.txt b/hstdp/2019.5/hstdp-2019.5-osx-py36.final.txt new file mode 100644 index 0000000..dd15375 --- /dev/null +++ b/hstdp/2019.5/hstdp-2019.5-osx-py36.final.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/drizzlepac-3.1.3-py36_0.tar.bz2 diff --git a/hstdp/2019.5/latest-linux b/hstdp/2019.5/latest-linux new file mode 100644 index 0000000..789f97d --- /dev/null +++ b/hstdp/2019.5/latest-linux @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/cfitsio-3.440-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/dbus-glib-0.108-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/dbus-python-1.2.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/secretstorage-2.3.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/scikit-learn-0.21.1-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/linux-64/astropy-3.2.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/linux-64/drizzlepac-3.1.3-py36_0.tar.bz2 diff --git a/hstdp/2019.5/latest-osx b/hstdp/2019.5/latest-osx new file mode 100644 index 0000000..dd15375 --- /dev/null +++ b/hstdp/2019.5/latest-osx @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libuuid-1.0.3-h6bb4b03_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/cfitsio-3.440-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/expat-2.2.6-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pcre-8.43-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gettext-0.19.8.1-h15daf44_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/hstcal-2.3.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/fontconfig-2.13.0-h5d5b041_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/glib-2.56.2-hd9629dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/dbus-1.13.6-h90a0687_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gstreamer-1.14.0-h415b841_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/qt-5.9.7-h468cd18_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/entrypoints-0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/gst-plugins-base-1.14.0-h29ae3d9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/sip-4.19.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/webencodings-0.5.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/html5lib-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/keyring-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyqt-5.9.2-py36h655552a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/d2to1-0.2.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/nose-1.3.7-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/asdf-2.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/astroquery-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.convolve-2.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.distutils-0.3.8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.imagestats-1.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.stimage-0.2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/scikit-learn-0.21.1-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/main/osx-64/astropy-3.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/crds-7.3.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/gwcs-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/photutils-0.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/pysynphot-0.9.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/reftools-1.7.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/spherical-geometry-1.2.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stregion-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.ndimage-0.10.1-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.tools-3.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/acstools-3.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/calcos-3.3.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/fitsblender-0.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/nictools-1.1.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stistools-1.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.image-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.imagemanip-1.1.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stwcs-1.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/tweakwcs-0.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/wfc3tools-1.3.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/wfpc2tools-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/costools-1.2.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/stsci.skypac-1.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/hstdp/2019.5/astroconda/osx-64/drizzlepac-3.1.3-py36_0.tar.bz2 diff --git a/hstdp/2019.5/release_notes.md b/hstdp/2019.5/release_notes.md new file mode 100644 index 0000000..f798289 --- /dev/null +++ b/hstdp/2019.5/release_notes.md @@ -0,0 +1,5 @@ +# Release Notes + +* 2019/11/22 - Iteration 2/Final +* 2019/10/31 - Iteration 1 +* 2019/10/23 - Iteration 0 diff --git a/hstdp/2019.5/software_updates.md b/hstdp/2019.5/software_updates.md new file mode 100644 index 0000000..04152a4 --- /dev/null +++ b/hstdp/2019.5/software_updates.md @@ -0,0 +1,3 @@ +# drizzlepac version 3.1.3 +# photutils version 0.7.1 +# spherical-geometry version 1.2.18 diff --git a/jwstdp/0.10.0/README.md b/jwstdp/0.10.0/README.md new file mode 100644 index 0000000..0bc8906 --- /dev/null +++ b/jwstdp/0.10.0/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.10.0 --file http://ssb.stsci.edu/releases/jwstdp/0.10.0/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.10.0 --file http://ssb.stsci.edu/releases/jwstdp/0.10.0/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh +$ bash Anaconda3-5.1.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.4.10-Linux-x86_64.sh +$ bash Miniconda3-4.4.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.10.0 --file http://ssb.stsci.edu/releases/jwstdp/0.10.0/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.10.0 +``` diff --git a/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py35.00.txt b/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py35.00.txt new file mode 100644 index 0000000..b4f173b --- /dev/null +++ b/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py35.00.txt @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.0rc.dev61+g37d57aa-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10505+gf380b7c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev0+gddeb071-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.2.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/curl-7.61.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.4-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.22.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.3.dev0+gde74bff-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev9+g5c9f6d5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py35ha1f6525_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev0+g9926bb5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.10.0.dev0+g4d1a743-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libcurl-7.61.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.3-py35hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.2-py35h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.0-py35h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.0-py35h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.3-py35h04863e7_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.4.dev211+gcbd3cad-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.1.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.6-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.6.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.1a.dev18+g6867556-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py35.01.txt b/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py35.01.txt new file mode 100644 index 0000000..7c41f5e --- /dev/null +++ b/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py35.01.txt @@ -0,0 +1,145 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.0rc.dev61+g37d57aa-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10518+g0526009-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev3+g3bef456-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.2.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.4-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.22.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev9+g5c9f6d5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py35ha1f6525_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev0+g9926bb5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.10.0.dev0+g4d1a743-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.3-py35hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.2-py35h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.0-py35h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.0-py35h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.3-py35h04863e7_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.4.dev308+g8de0150-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.1.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.6-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.6.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py36.00.txt b/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py36.00.txt new file mode 100644 index 0000000..785a1c1 --- /dev/null +++ b/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py36.00.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.0rc.dev61+g37d57aa-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10505+gf380b7c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev0+gddeb071-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.2.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/curl-7.61.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.4-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.22.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.3.dev0+gde74bff-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev9+g5c9f6d5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py36h8d01980_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.10.0.dev0+g4d1a743-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libcurl-7.61.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.3-py36hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.2-py36hb69df0a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py36h6bb024c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.0-py36h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.0-py36h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.3-py36h04863e7_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.4.dev211+gcbd3cad-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py36heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.6-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h22d08a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.6.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36h035aef0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h52aff34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hc49cb51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-39.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.1a.dev18+g6867556-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.0.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py36.01.txt b/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py36.01.txt new file mode 100644 index 0000000..5fadad0 --- /dev/null +++ b/jwstdp/0.10.0/dev/jwstdp-0.10.0-linux-py36.01.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/asdf-2.0.0rc.dev61+g37d57aa-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/astropy-4.0.0.dev10518+g0526009-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/beautifulsoup4-4.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/cfitsio-3.440-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/click-6.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cloudpickle-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/crds-7.2.5.dev3+g3bef456-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cryptography-2.2.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cython-0.28.4-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/dask-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/dask-core-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/distributed-1.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/filelock-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/freetype-2.9.1-h8a8886c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/gwcs-0.10a.dev9+g5c9f6d5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/h5py-2.8.0-py36h8d01980_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/jwst-0.10.0.dev0+g4d1a743-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/lxml-4.2.3-py36hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/matplotlib-2.2.2-py36hb69df0a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/mkl_fft-1.0.4-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/more-itertools-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/numpy-1.15.0-py36h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/numpy-base-1.15.0-py36h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pandas-0.23.3-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/photutils-0.4.dev308+g8de0150-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pillow-5.2.0-py36heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pluggy-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/psutil-5.4.6-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/py-1.5.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pyqt-5.9.2-py36h22d08a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pytest-3.6.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/python-3.6.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pywavelets-0.5.2-py36h035aef0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/qt-5.9.6-h52aff34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/scipy-1.1.0-py36hc49cb51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/setuptools-39.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/sortedcontainers-2.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/tornado-5.0.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py35.00.txt b/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py35.00.txt new file mode 100644 index 0000000..9a70da5 --- /dev/null +++ b/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py35.00.txt @@ -0,0 +1,141 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.0rc.dev61+g37d57aa-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10505+gf380b7c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.5.dev0+gddeb071-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.2.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/curl-7.61.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.4-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.22.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.3.dev0+gde74bff-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev9+g5c9f6d5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py35ha8ecd60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev0+g9926bb5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.10.0.dev0+g4d1a743-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcurl-7.61.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.3-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.4-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.0-py35h648b28d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.0-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.3-py35h6440ff4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.4.dev211+gcbd3cad-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.1.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.6-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.6.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.1a.dev18+g6867556-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py35.01.txt b/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py35.01.txt new file mode 100644 index 0000000..8279a3a --- /dev/null +++ b/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py35.01.txt @@ -0,0 +1,136 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.0rc.dev61+g37d57aa-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10518+g0526009-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.5.dev3+g3bef456-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.2.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.4-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.18.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.22.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev9+g5c9f6d5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py35ha8ecd60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev0+g9926bb5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.10.0.dev0+g4d1a743-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.3-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.4-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.0-py35h648b28d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.0-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.3-py35h6440ff4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.4.dev308+g8de0150-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.1.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.6-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.6.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.4-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py36.00.txt b/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py36.00.txt new file mode 100644 index 0000000..4a240bf --- /dev/null +++ b/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py36.00.txt @@ -0,0 +1,138 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.0rc.dev61+g37d57aa-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10505+gf380b7c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.5.dev0+gddeb071-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.2.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/curl-7.61.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.4-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.22.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.3.dev0+gde74bff-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev9+g5c9f6d5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py36h3c9e6ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.10.0.dev0+g4d1a743-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcurl-7.61.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.2-py36hbf02d85_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.4-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py36h04f5b5a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.0-py36h648b28d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.0-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.3-py36h6440ff4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.4.dev211+gcbd3cad-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.2.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.6-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.6.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h1d22016_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36hf1f7d93_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-39.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.4-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.1a.dev18+g6867556-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py36.01.txt b/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py36.01.txt new file mode 100644 index 0000000..805c17f --- /dev/null +++ b/jwstdp/0.10.0/dev/jwstdp-0.10.0-osx-py36.01.txt @@ -0,0 +1,136 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/asdf-2.0.0rc.dev61+g37d57aa-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/astropy-4.0.0.dev10518+g0526009-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/beautifulsoup4-4.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cffi-1.11.5-py36h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/cfitsio-3.440-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cloudpickle-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/crds-7.2.5.dev3+g3bef456-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cryptography-2.2.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cython-0.28.4-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/dask-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/dask-core-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/distributed-1.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/filelock-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/gwcs-0.10a.dev9+g5c9f6d5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/h5py-2.8.0-py36h3c9e6ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/jwst-0.10.0.dev0+g4d1a743-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/lxml-4.2.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/matplotlib-2.2.2-py36hbf02d85_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/mkl_fft-1.0.4-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/more-itertools-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/numpy-1.15.0-py36h648b28d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/numpy-base-1.15.0-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pandas-0.23.3-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/photutils-0.4.dev308+g8de0150-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pillow-5.2.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pluggy-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/psutil-5.4.6-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/py-1.5.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pytest-3.6.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pywavelets-0.5.2-py36h1d22016_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/scipy-1.1.0-py36hf1f7d93_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/setuptools-39.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/sortedcontainers-2.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/tornado-5.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.10.0/latest-linux b/jwstdp/0.10.0/latest-linux new file mode 100644 index 0000000..5fadad0 --- /dev/null +++ b/jwstdp/0.10.0/latest-linux @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/asdf-2.0.0rc.dev61+g37d57aa-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/astropy-4.0.0.dev10518+g0526009-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/beautifulsoup4-4.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/cfitsio-3.440-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/click-6.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cloudpickle-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/crds-7.2.5.dev3+g3bef456-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cryptography-2.2.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cython-0.28.4-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/dask-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/dask-core-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/distributed-1.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/filelock-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/freetype-2.9.1-h8a8886c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/gwcs-0.10a.dev9+g5c9f6d5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/h5py-2.8.0-py36h8d01980_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/jwst-0.10.0.dev0+g4d1a743-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/lxml-4.2.3-py36hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/matplotlib-2.2.2-py36hb69df0a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/mkl_fft-1.0.4-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/more-itertools-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/numpy-1.15.0-py36h1b885b7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/numpy-base-1.15.0-py36h3dfced4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pandas-0.23.3-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/photutils-0.4.dev308+g8de0150-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pillow-5.2.0-py36heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pluggy-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/psutil-5.4.6-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/py-1.5.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pyqt-5.9.2-py36h22d08a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pytest-3.6.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/python-3.6.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pywavelets-0.5.2-py36h035aef0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/qt-5.9.6-h52aff34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/scipy-1.1.0-py36hc49cb51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/setuptools-39.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/sortedcontainers-2.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/tornado-5.0.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/linux-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.10.0/latest-osx b/jwstdp/0.10.0/latest-osx new file mode 100644 index 0000000..805c17f --- /dev/null +++ b/jwstdp/0.10.0/latest-osx @@ -0,0 +1,136 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/asdf-2.0.0rc.dev61+g37d57aa-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/astropy-4.0.0.dev10518+g0526009-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/beautifulsoup4-4.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cffi-1.11.5-py36h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/cfitsio-3.440-4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cloudpickle-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/crds-7.2.5.dev3+g3bef456-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cryptography-2.2.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cython-0.28.4-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/dask-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/dask-core-0.18.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/distributed-1.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/filelock-3.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/gwcs-0.10a.dev9+g5c9f6d5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/h5py-2.8.0-py36h3c9e6ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/jwst-0.10.0.dev0+g4d1a743-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/lxml-4.2.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/matplotlib-2.2.2-py36hbf02d85_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/mkl_fft-1.0.4-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/more-itertools-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/numpy-1.15.0-py36h648b28d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/numpy-base-1.15.0-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pandas-0.23.3-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/photutils-0.4.dev308+g8de0150-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pillow-5.2.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pluggy-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/psutil-5.4.6-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/py-1.5.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pytest-3.6.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pywavelets-0.5.2-py36h1d22016_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/scipy-1.1.0-py36hf1f7d93_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/setuptools-39.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/sortedcontainers-2.0.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/tornado-5.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/astroconda-dev/osx-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.10.0/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.11.0/README.md b/jwstdp/0.11.0/README.md new file mode 100644 index 0000000..4111e71 --- /dev/null +++ b/jwstdp/0.11.0/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.11.0 --file http://ssb.stsci.edu/releases/jwstdp/0.11.0/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.11.0 --file http://ssb.stsci.edu/releases/jwstdp/0.11.0/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh +$ bash Anaconda3-5.2.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh +$ bash Miniconda3-4.5.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.11.0 --file http://ssb.stsci.edu/releases/jwstdp/0.11.0/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.11.0 +``` diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py35.00.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py35.00.txt new file mode 100644 index 0000000..7b2e8ea --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py35.00.txt @@ -0,0 +1,156 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.4-py35hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py35h6bb024c_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.1-py35h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.12-py35he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1-py35h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py35he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py35h22d08a2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py35hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.23.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py35h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev0+g9926bb5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.3-py35hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.1-py35h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py35h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.0-py35hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py35hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.19.1-py35hbf1f462_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10709+g9adc09d-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.3a.dev2+g41878f1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev61+g44aa309-py35_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.5.dev19+g90bb8df-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.3.dev0+gde74bff-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev17+g579d5c6-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.3a.dev0+ga54afef-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.11.0.dev0+gacae705-py35_3.tar.bz2 diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py35.01.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py35.01.txt new file mode 100644 index 0000000..7b2e8ea --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py35.01.txt @@ -0,0 +1,156 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.4-py35hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py35h6bb024c_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.1-py35h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.12-py35he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1-py35h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py35he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py35h22d08a2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py35hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.23.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py35h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev0+g9926bb5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.3-py35hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.1-py35h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py35h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.0-py35hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py35hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.19.1-py35hbf1f462_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10709+g9adc09d-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.3a.dev2+g41878f1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev61+g44aa309-py35_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.5.dev19+g90bb8df-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.3.dev0+gde74bff-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev17+g579d5c6-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.3a.dev0+ga54afef-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.11.0.dev0+gacae705-py35_3.tar.bz2 diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py36.00.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py36.00.txt new file mode 100644 index 0000000..85a98a9 --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py36.00.txt @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.24-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.4-py36hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.1-py36h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.12-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py36heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h22d08a2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.23.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.3-py36hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.1-py36h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.0-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.19.1-py36hedc7406_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10709+g9adc09d-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.3a.dev2+g41878f1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev61+g44aa309-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.5.dev19+g90bb8df-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.3.dev0+gde74bff-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev17+g579d5c6-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.3a.dev0+ga54afef-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.11.0.dev0+gacae705-py36_3.tar.bz2 diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py36.01.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py36.01.txt new file mode 100644 index 0000000..9f6300f --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py36.01.txt @@ -0,0 +1,155 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/python-3.6.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/certifi-2018.8.24-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/click-6.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cloudpickle-0.5.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/dask-core-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/filelock-3.0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/lxml-4.2.4-py36hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/numpy-base-1.15.1-py36h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/py-1.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/sip-4.19.12-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/tornado-5.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pillow-5.2.0-py36heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pyqt-5.9.2-py36h22d08a2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/setuptools-40.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cython-0.28.5-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/distributed-1.23.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-3.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/matplotlib-2.2.3-py36hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/mkl_fft-1.0.4-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/numpy-1.15.1-py36h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pywavelets-1.0.0-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/dask-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/scikit-learn-0.19.1-py36hedc7406_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/astropy-4.0.0.dev10716+ge1ea48e-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/asdf-2.0.3a.dev2+g41878f1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/crds-7.2.6.dev0+g06bed4f-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/photutils-0.5.dev19+g90bb8df-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/fitsblender-0.3.3.dev0+gde74bff-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/gwcs-0.10a.dev17+g579d5c6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/stwcs-1.4.3a.dev0+ga54afef-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/jwst-0.11.0.dev0+gacae705-py36_3.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py37.00.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py37.00.txt new file mode 100644 index 0000000..27fb502 --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py37.00.txt @@ -0,0 +1,155 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.7.0-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.24-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.4-py37hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py37h6bb024c_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.1-py37h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.12-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1-py37h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py37he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py37heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py37h22d08a2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py37hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.23.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py37h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev0+g9926bb5-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.3-py37hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py37h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py37h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.1-py37h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py37h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.0-py37hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py37hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py37hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.19.1-py37hedc7406_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10709+g9adc09d-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.3a.dev2+g41878f1-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev61+g44aa309-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.5.dev19+g90bb8df-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.3.dev0+gde74bff-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev17+g579d5c6-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.3a.dev0+ga54afef-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.11.0.dev0+gacae705-py37_3.tar.bz2 diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py37.01.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py37.01.txt new file mode 100644 index 0000000..27fb502 --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-linux-py37.01.txt @@ -0,0 +1,155 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.7.0-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.24-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.4-py37hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py37h6bb024c_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.1-py37h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.12-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1-py37h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py37he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py37heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py37h22d08a2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py37hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.23.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py37h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev0+g9926bb5-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.3-py37hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.4-py37h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py37h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.1-py37h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py37h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.0-py37hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py37hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py37hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.19.1-py37hedc7406_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10709+g9adc09d-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.3a.dev2+g41878f1-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.5.dev61+g44aa309-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.5.dev19+g90bb8df-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.3.dev0+gde74bff-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev17+g579d5c6-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.3a.dev0+ga54afef-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.11.0.dev0+gacae705-py37_3.tar.bz2 diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py35.00.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py35.00.txt new file mode 100644 index 0000000..a22b59e --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py35.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.4-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py35h04f5b5a_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.1-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py35h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1-py35h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py35h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.2.0-py35hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py35hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.23.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py35h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev0+g9926bb5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.3-py35h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.4-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.1-py35h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py35h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.0-py35h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py35h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.19.1-py35h2b554eb_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10709+g9adc09d-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.3a.dev2+g41878f1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.5.dev61+g44aa309-py35_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.5.dev19+g90bb8df-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.3.dev0+gde74bff-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev17+g579d5c6-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.3a.dev0+ga54afef-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.11.0.dev0+gacae705-py35_3.tar.bz2 diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py35.01.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py35.01.txt new file mode 100644 index 0000000..a22b59e --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py35.01.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.4-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py35h04f5b5a_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.1-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py35h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1-py35h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py35h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.2.0-py35hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py35hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.23.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py35h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev0+g9926bb5-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.3-py35h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.4-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.1-py35h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py35h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.0-py35h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py35h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.19.1-py35h2b554eb_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10709+g9adc09d-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.3a.dev2+g41878f1-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.5.dev61+g44aa309-py35_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.5.dev19+g90bb8df-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.3.dev0+gde74bff-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev17+g579d5c6-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.3a.dev0+ga54afef-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.11.0.dev0+gacae705-py35_3.tar.bz2 diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py36.00.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py36.00.txt new file mode 100644 index 0000000..c8340a4 --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py36.00.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.24-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.4-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.1-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.2.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.23.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.3-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.4-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.1-py36h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.0-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.19.1-py36hf9f1f73_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10709+g9adc09d-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.3a.dev2+g41878f1-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.5.dev61+g44aa309-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.5.dev19+g90bb8df-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.3.dev0+gde74bff-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev17+g579d5c6-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.3a.dev0+ga54afef-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.11.0.dev0+gacae705-py36_3.tar.bz2 diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py36.01.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py36.01.txt new file mode 100644 index 0000000..37d49af --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py36.01.txt @@ -0,0 +1,145 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/certifi-2018.8.24-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cloudpickle-0.5.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/dask-core-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/filelock-3.0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/lxml-4.2.4-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/numpy-base-1.15.1-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/py-1.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/tornado-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pillow-5.2.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/setuptools-40.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cython-0.28.5-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/distributed-1.23.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-3.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/matplotlib-2.2.3-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/mkl_fft-1.0.4-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/numpy-1.15.1-py36h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pywavelets-1.0.0-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/dask-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/scikit-learn-0.19.1-py36hf9f1f73_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/astropy-4.0.0.dev10716+ge1ea48e-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/asdf-2.0.3a.dev2+g41878f1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/crds-7.2.6.dev0+g06bed4f-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/photutils-0.5.dev19+g90bb8df-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/fitsblender-0.3.3.dev0+gde74bff-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/gwcs-0.10a.dev17+g579d5c6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/stwcs-1.4.3a.dev0+ga54afef-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/jwst-0.11.0.dev0+gacae705-py36_3.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py37.00.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py37.00.txt new file mode 100644 index 0000000..b0e2add --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py37.00.txt @@ -0,0 +1,145 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.7.0-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.24-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.4-py37hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py37h04f5b5a_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.1-py37h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py37h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.2.0-py37hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py37hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.23.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py37h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev0+g9926bb5-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.3-py37h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.4-py37h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py37h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.1-py37h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py37h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.0-py37h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py37h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py37h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.19.1-py37hf9f1f73_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10709+g9adc09d-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.3a.dev2+g41878f1-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.5.dev61+g44aa309-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.5.dev19+g90bb8df-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.3.dev0+gde74bff-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev17+g579d5c6-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.3a.dev0+ga54afef-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.11.0.dev0+gacae705-py37_3.tar.bz2 diff --git a/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py37.01.txt b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py37.01.txt new file mode 100644 index 0000000..b0e2add --- /dev/null +++ b/jwstdp/0.11.0/dev/jwstdp-0.11.0-osx-py37.01.txt @@ -0,0 +1,145 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.7.0-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.24-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.4-py37hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py37h04f5b5a_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.1-py37h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py37h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.2.0-py37hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py37hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.23.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.7.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py37h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev0+g9926bb5-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.3-py37h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.4-py37h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py37h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.1-py37h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py37h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.0-py37h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py37h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py37h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.19.1-py37hf9f1f73_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10709+g9adc09d-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.3a.dev2+g41878f1-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.5.dev61+g44aa309-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.5.dev19+g90bb8df-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.3.dev0+gde74bff-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev17+g579d5c6-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.3a.dev0+ga54afef-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.11.0.dev0+gacae705-py37_3.tar.bz2 diff --git a/jwstdp/0.11.0/latest-linux b/jwstdp/0.11.0/latest-linux new file mode 100644 index 0000000..9f6300f --- /dev/null +++ b/jwstdp/0.11.0/latest-linux @@ -0,0 +1,155 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/sqlite-3.24.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/python-3.6.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/certifi-2018.8.24-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/click-6.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cloudpickle-0.5.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/dask-core-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/filelock-3.0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/lxml-4.2.4-py36hf71bdeb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/numpy-base-1.15.1-py36h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/py-1.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/sip-4.19.12-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/tornado-5.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pillow-5.2.0-py36heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pyqt-5.9.2-py36h22d08a2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/setuptools-40.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/cython-0.28.5-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/distributed-1.23.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-3.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/matplotlib-2.2.3-py36hb69df0a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/mkl_fft-1.0.4-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/numpy-1.15.1-py36h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pywavelets-1.0.0-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/dask-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/linux-64/scikit-learn-0.19.1-py36hedc7406_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/astropy-4.0.0.dev10716+ge1ea48e-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/asdf-2.0.3a.dev2+g41878f1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/crds-7.2.6.dev0+g06bed4f-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/photutils-0.5.dev19+g90bb8df-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/fitsblender-0.3.3.dev0+gde74bff-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/gwcs-0.10a.dev17+g579d5c6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/stwcs-1.4.3a.dev0+ga54afef-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/linux-64/jwst-0.11.0.dev0+gacae705-py36_3.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.11.0/latest-osx b/jwstdp/0.11.0/latest-osx new file mode 100644 index 0000000..37d49af --- /dev/null +++ b/jwstdp/0.11.0/latest-osx @@ -0,0 +1,145 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/sqlite-3.24.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/certifi-2018.8.24-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cloudpickle-0.5.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/dask-core-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/filelock-3.0.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/lxml-4.2.4-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/numpy-base-1.15.1-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/py-1.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pycparser-2.18-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pyparsing-2.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/tornado-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/jedi-0.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pillow-5.2.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/setuptools-40.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/cython-0.28.5-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/distributed-1.23.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-3.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/ipython-6.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/jplephem-2.8.dev0+g9926bb5-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/matplotlib-2.2.3-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/mkl_fft-1.0.4-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/numpy-1.15.1-py36h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pywavelets-1.0.0-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/dask-0.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/main/osx-64/scikit-learn-0.19.1-py36hf9f1f73_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/astropy-4.0.0.dev10716+ge1ea48e-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/asdf-2.0.3a.dev2+g41878f1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/crds-7.2.6.dev0+g06bed4f-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/photutils-0.5.dev19+g90bb8df-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev10+g9375ee8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/fitsblender-0.3.3.dev0+gde74bff-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/gwcs-0.10a.dev17+g579d5c6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/stwcs-1.4.3a.dev0+ga54afef-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.11.0/astroconda-dev/osx-64/jwst-0.11.0.dev0+gacae705-py36_3.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.0/README.md b/jwstdp/0.12.0/README.md new file mode 100644 index 0000000..1e2bdd8 --- /dev/null +++ b/jwstdp/0.12.0/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.12.0 --file http://ssb.stsci.edu/releases/jwstdp/0.12.0/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.12.0 --file http://ssb.stsci.edu/releases/jwstdp/0.12.0/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh +$ bash Anaconda3-5.2.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh +$ bash Miniconda3-4.5.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.12.0 --file http://ssb.stsci.edu/releases/jwstdp/0.12.0/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.12.0 +``` diff --git a/jwstdp/0.12.0/dev/jwstdp-0.12.0-linux-py35.00.txt b/jwstdp/0.12.0/dev/jwstdp-0.12.0-linux-py35.00.txt new file mode 100644 index 0000000..d7e5528 --- /dev/null +++ b/jwstdp/0.12.0/dev/jwstdp-0.12.0-linux-py35.00.txt @@ -0,0 +1,154 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/python-3.5.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/dask-core-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/kiwisolver-1.0.1-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/lxml-4.2.5-py35hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/markupsafe-1.0-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/numpy-base-1.15.2-py35h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/olefile-0.46-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/psutil-5.4.7-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pycparser-2.19-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pyyaml-3.13-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/tornado-5.1.1-py35h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cffi-1.11.5-py35he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pyqt-5.9.2-py35h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cryptography-2.3.1-py35hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/distributed-1.23.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/h5py-2.8.0-py35h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/imageio-2.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/jplephem-2.8.dev1+gc1b4c18-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/matplotlib-3.0.0-py35h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/mkl_fft-1.0.6-py35h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/mkl_random-1.0.1-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/numpy-1.15.2-py35h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pandas-0.23.4-py35h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pywavelets-1.0.0-py35hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/scipy-1.1.0-py35hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/dask-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/scikit-learn-0.20.0-py35h4989274_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/astropy-4.0.0.dev10846+g28dfe5b-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/asdf-2.1.0.dev11+gcb23d39-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/crds-7.2.6.dev6+gb7934d0-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/photutils-0.5.dev54+gdb69866-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/gwcs-0.10a.dev29+g342325a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/jwst-0.12.0.dev0+gc1c2a49-py35_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.0/dev/jwstdp-0.12.0-linux-py36.00.txt b/jwstdp/0.12.0/dev/jwstdp-0.12.0-linux-py36.00.txt new file mode 100644 index 0000000..79dddeb --- /dev/null +++ b/jwstdp/0.12.0/dev/jwstdp-0.12.0-linux-py36.00.txt @@ -0,0 +1,153 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.24-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.2-py36h81de0dd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.23.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-7.0.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.2-py36h1d66e8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.19.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.0-py36h4989274_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10846+g28dfe5b-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.1.0.dev11+gcb23d39-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.6.dev153+g8c17de7-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.5.dev54+gdb69866-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev29+g342325a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.12.0.dev0+gc1c2a49-py36_4.tar.bz2 diff --git a/jwstdp/0.12.0/dev/jwstdp-0.12.0-linux-py37.00.txt b/jwstdp/0.12.0/dev/jwstdp-0.12.0-linux-py37.00.txt new file mode 100644 index 0000000..d690cca --- /dev/null +++ b/jwstdp/0.12.0/dev/jwstdp-0.12.0-linux-py37.00.txt @@ -0,0 +1,153 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.7.0-h6e4f718_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.24-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py37hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py37h6bb024c_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.2-py37h81de0dd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py37h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py37he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.13.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py37h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py37hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.23.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-2.0.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-7.0.1-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py37h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev1+gc1b4c18-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.0-py37h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.6-py37h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py37h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.2-py37h1d66e8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py37h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py37hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py37hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.19.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py37hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.0-py37h4989274_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10846+g28dfe5b-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.1.0.dev11+gcb23d39-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.6.dev153+g8c17de7-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.5.dev54+gdb69866-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev29+g342325a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.12.0.dev0+gc1c2a49-py37_4.tar.bz2 diff --git a/jwstdp/0.12.0/dev/jwstdp-0.12.0-osx-py35.00.txt b/jwstdp/0.12.0/dev/jwstdp-0.12.0-osx-py35.00.txt new file mode 100644 index 0000000..bb76cf9 --- /dev/null +++ b/jwstdp/0.12.0/dev/jwstdp-0.12.0-osx-py35.00.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/python-3.5.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/dask-core-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/lxml-4.2.5-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/markupsafe-1.0-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/numpy-base-1.15.2-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/olefile-0.46-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/psutil-5.4.7-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pycparser-2.19-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pyyaml-3.13-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/tornado-5.1.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cffi-1.11.5-py35h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pillow-5.2.0-py35hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cryptography-2.3.1-py35hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cython-0.28.5-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/distributed-1.23.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/h5py-2.8.0-py35h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/imageio-2.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/jplephem-2.8.dev1+gc1b4c18-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/matplotlib-3.0.0-py35h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/mkl_fft-1.0.6-py35hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/mkl_random-1.0.1-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/numpy-1.15.2-py35h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pandas-0.23.4-py35h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pywavelets-1.0.0-py35h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/scipy-1.1.0-py35h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/dask-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/scikit-learn-0.20.0-py35h4f467ca_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/astropy-4.0.0.dev10846+g28dfe5b-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/asdf-2.1.0.dev11+gcb23d39-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/crds-7.2.6.dev6+gb7934d0-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/photutils-0.5.dev54+gdb69866-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev11+g5b65401-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/gwcs-0.10a.dev29+g342325a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/jwst-0.12.0.dev0+gc1c2a49-py35_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.0/dev/jwstdp-0.12.0-osx-py36.00.txt b/jwstdp/0.12.0/dev/jwstdp-0.12.0-osx-py36.00.txt new file mode 100644 index 0000000..ccab84c --- /dev/null +++ b/jwstdp/0.12.0/dev/jwstdp-0.12.0-osx-py36.00.txt @@ -0,0 +1,143 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.24-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.2-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.23.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.0.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.2-py36h6a91979_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.19.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.0-py36h4f467ca_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10846+g28dfe5b-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.1.0.dev11+gcb23d39-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.6.dev153+g8c17de7-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.5.dev54+gdb69866-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev11+g5b65401-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev29+g342325a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.12.0.dev0+gc1c2a49-py36_4.tar.bz2 diff --git a/jwstdp/0.12.0/dev/jwstdp-0.12.0-osx-py37.00.txt b/jwstdp/0.12.0/dev/jwstdp-0.12.0-osx-py37.00.txt new file mode 100644 index 0000000..ebcdb2f --- /dev/null +++ b/jwstdp/0.12.0/dev/jwstdp-0.12.0-osx-py37.00.txt @@ -0,0 +1,143 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.7.0-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.24-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.6-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py37hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py37h04f5b5a_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.2-py37h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py37h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py37hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py37hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.23.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.0.1-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py37h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev1+gc1b4c18-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.0-py37h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.6-py37hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py37h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.2-py37h6a91979_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py37h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py37h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py37h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.19.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py37h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.0-py37h4f467ca_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10846+g28dfe5b-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.1.0.dev11+gcb23d39-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.6.dev153+g8c17de7-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.5.dev54+gdb69866-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev11+g5b65401-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev29+g342325a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.12.0.dev0+gc1c2a49-py37_4.tar.bz2 diff --git a/jwstdp/0.12.0/latest-linux b/jwstdp/0.12.0/latest-linux new file mode 100644 index 0000000..d7e5528 --- /dev/null +++ b/jwstdp/0.12.0/latest-linux @@ -0,0 +1,154 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/python-3.5.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/dask-core-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/kiwisolver-1.0.1-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/lxml-4.2.5-py35hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/markupsafe-1.0-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/numpy-base-1.15.2-py35h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/olefile-0.46-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/psutil-5.4.7-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pycparser-2.19-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pyyaml-3.13-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/tornado-5.1.1-py35h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cffi-1.11.5-py35he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pyqt-5.9.2-py35h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cryptography-2.3.1-py35hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/distributed-1.23.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/h5py-2.8.0-py35h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/imageio-2.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/jplephem-2.8.dev1+gc1b4c18-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/matplotlib-3.0.0-py35h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/mkl_fft-1.0.6-py35h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/mkl_random-1.0.1-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/numpy-1.15.2-py35h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pandas-0.23.4-py35h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pywavelets-1.0.0-py35hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/scipy-1.1.0-py35hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/dask-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/linux-64/scikit-learn-0.20.0-py35h4989274_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/astropy-4.0.0.dev10846+g28dfe5b-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/asdf-2.1.0.dev11+gcb23d39-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/crds-7.2.6.dev6+gb7934d0-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/photutils-0.5.dev54+gdb69866-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/gwcs-0.10a.dev29+g342325a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/linux-64/jwst-0.12.0.dev0+gc1c2a49-py35_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.0/latest-osx b/jwstdp/0.12.0/latest-osx new file mode 100644 index 0000000..bb76cf9 --- /dev/null +++ b/jwstdp/0.12.0/latest-osx @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/python-3.5.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/dask-core-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/lxml-4.2.5-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/markupsafe-1.0-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/numpy-base-1.15.2-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/olefile-0.46-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/psutil-5.4.7-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pycparser-2.19-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pyyaml-3.13-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/tornado-5.1.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cffi-1.11.5-py35h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pillow-5.2.0-py35hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cryptography-2.3.1-py35hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/cython-0.28.5-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/distributed-1.23.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/h5py-2.8.0-py35h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/imageio-2.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/jplephem-2.8.dev1+gc1b4c18-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/matplotlib-3.0.0-py35h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/mkl_fft-1.0.6-py35hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/mkl_random-1.0.1-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/numpy-1.15.2-py35h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pandas-0.23.4-py35h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pywavelets-1.0.0-py35h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/scipy-1.1.0-py35h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/dask-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/main/osx-64/scikit-learn-0.20.0-py35h4f467ca_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/astropy-4.0.0.dev10846+g28dfe5b-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/asdf-2.1.0.dev11+gcb23d39-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/crds-7.2.6.dev6+gb7934d0-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/photutils-0.5.dev54+gdb69866-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev11+g5b65401-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/gwcs-0.10a.dev29+g342325a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.0/astroconda-dev/osx-64/jwst-0.12.0.dev0+gc1c2a49-py35_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.1/README.md b/jwstdp/0.12.1/README.md new file mode 100644 index 0000000..9e37c82 --- /dev/null +++ b/jwstdp/0.12.1/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.12.1 --file http://ssb.stsci.edu/releases/jwstdp/0.12.1/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.12.1 --file http://ssb.stsci.edu/releases/jwstdp/0.12.1/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.3.0-Linux-x86_64.sh +$ bash Anaconda3-5.3.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh +$ bash Miniconda3-4.5.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.12.1 --file http://ssb.stsci.edu/releases/jwstdp/0.12.1/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.12.1 +``` diff --git a/jwstdp/0.12.1/dev/jwstdp-0.12.1-linux-py35.00.txt b/jwstdp/0.12.1/dev/jwstdp-0.12.1-linux-py35.00.txt new file mode 100644 index 0000000..7a45f92 --- /dev/null +++ b/jwstdp/0.12.1/dev/jwstdp-0.12.1-linux-py35.00.txt @@ -0,0 +1,154 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py35hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py35h6bb024c_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.2-py35h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py35h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py35he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py35h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py35hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.23.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py35h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev1+gc1b4c18-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.0-py35h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.6-py35h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.2-py35h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py35h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.0-py35hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py35hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.0-py35h4989274_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev11430+g153096e-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.1.0.dev97+g414ad9d-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.9.dev0+gf94a33d-py35_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.5.dev85+g1cf98be-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev29+g342325a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.12.1.dev0+g7a08b4d-py35_4.tar.bz2 diff --git a/jwstdp/0.12.1/dev/jwstdp-0.12.1-linux-py36.00.txt b/jwstdp/0.12.1/dev/jwstdp-0.12.1-linux-py36.00.txt new file mode 100644 index 0000000..d1881ee --- /dev/null +++ b/jwstdp/0.12.1/dev/jwstdp-0.12.1-linux-py36.00.txt @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.3-py36h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.8-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.9.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.1-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.3-py36h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.0-py36h4989274_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev11430+g153096e-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.1.0.dev97+g414ad9d-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.5.dev65+gd29df63-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev29+g342325a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.12.1.dev0+g7a08b4d-py36_4.tar.bz2 diff --git a/jwstdp/0.12.1/dev/jwstdp-0.12.1-linux-py36.01.txt b/jwstdp/0.12.1/dev/jwstdp-0.12.1-linux-py36.01.txt new file mode 100644 index 0000000..7b3c647 --- /dev/null +++ b/jwstdp/0.12.1/dev/jwstdp-0.12.1-linux-py36.01.txt @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/numpy-base-1.15.2-py36h81de0dd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/psutil-5.4.8-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-3.9.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/matplotlib-3.0.1-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/numpy-1.15.2-py36h1d66e8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/scikit-learn-0.20.0-py36h4989274_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/astropy-4.0.0.dev11430+g153096e-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/asdf-2.1.0.dev97+g414ad9d-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/photutils-0.5.dev65+gd29df63-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/gwcs-0.10a.dev29+g342325a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/jwst-0.12.1.dev0+g7a08b4d-py36_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.1/dev/jwstdp-0.12.1-osx-py35.00.txt b/jwstdp/0.12.1/dev/jwstdp-0.12.1-osx-py35.00.txt new file mode 100644 index 0000000..ac4d289 --- /dev/null +++ b/jwstdp/0.12.1/dev/jwstdp-0.12.1-osx-py35.00.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py35h04f5b5a_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.2-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py35h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py35h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py35h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.2.0-py35hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py35hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.23.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py35h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev1+gc1b4c18-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.0-py35h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.6-py35hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.2-py35h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py35h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.0-py35h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py35h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.0-py35h4f467ca_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev11430+g153096e-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.1.0.dev97+g414ad9d-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.9.dev0+gf94a33d-py35_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.5.dev85+g1cf98be-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev29+g342325a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.12.1.dev0+g7a08b4d-py35_4.tar.bz2 diff --git a/jwstdp/0.12.1/dev/jwstdp-0.12.1-osx-py36.00.txt b/jwstdp/0.12.1/dev/jwstdp-0.12.1-osx-py36.00.txt new file mode 100644 index 0000000..a0fc42a --- /dev/null +++ b/jwstdp/0.12.1/dev/jwstdp-0.12.1-osx-py36.00.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.7-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.3-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.8-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py36ha12b0ac_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.9.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.1-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.3-py36h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.0-py36h4f467ca_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev11430+g153096e-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.1.0.dev97+g414ad9d-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.5.dev85+g1cf98be-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev29+g342325a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.12.1.dev0+g7a08b4d-py36_4.tar.bz2 diff --git a/jwstdp/0.12.1/dev/jwstdp-0.12.1-osx-py36.01.txt b/jwstdp/0.12.1/dev/jwstdp-0.12.1-osx-py36.01.txt new file mode 100644 index 0000000..9ce76c2 --- /dev/null +++ b/jwstdp/0.12.1/dev/jwstdp-0.12.1-osx-py36.01.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/openssl-1.1.1-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/python-3.6.7-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/numpy-base-1.15.2-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/psutil-5.4.8-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cryptography-2.3.1-py36ha12b0ac_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-3.9.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/matplotlib-3.0.1-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/numpy-1.15.2-py36h6a91979_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/scikit-learn-0.20.0-py36h4f467ca_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/astropy-4.0.0.dev11430+g153096e-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/asdf-2.1.0.dev97+g414ad9d-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/photutils-0.5.dev85+g1cf98be-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/gwcs-0.10a.dev29+g342325a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/jwst-0.12.1.dev0+g7a08b4d-py36_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.1/latest-linux b/jwstdp/0.12.1/latest-linux new file mode 100644 index 0000000..7b3c647 --- /dev/null +++ b/jwstdp/0.12.1/latest-linux @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/numpy-base-1.15.2-py36h81de0dd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/psutil-5.4.8-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-3.9.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/matplotlib-3.0.1-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/numpy-1.15.2-py36h1d66e8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/linux-64/scikit-learn-0.20.0-py36h4989274_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/astropy-4.0.0.dev11430+g153096e-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/asdf-2.1.0.dev97+g414ad9d-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/photutils-0.5.dev65+gd29df63-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/gwcs-0.10a.dev29+g342325a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/linux-64/jwst-0.12.1.dev0+g7a08b4d-py36_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.1/latest-osx b/jwstdp/0.12.1/latest-osx new file mode 100644 index 0000000..9ce76c2 --- /dev/null +++ b/jwstdp/0.12.1/latest-osx @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/openssl-1.1.1-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/python-3.6.7-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/filelock-3.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/numpy-base-1.15.2-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/psutil-5.4.8-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pyparsing-2.2.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytz-2018.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/setuptools-40.4.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cryptography-2.3.1-py36ha12b0ac_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-3.9.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-remotedata-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/requests-2.19.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/matplotlib-3.0.1-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/numpy-1.15.2-py36h6a91979_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/main/osx-64/scikit-learn-0.20.0-py36h4f467ca_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/astropy-4.0.0.dev11430+g153096e-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/asdf-2.1.0.dev97+g414ad9d-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/photutils-0.5.dev85+g1cf98be-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/gwcs-0.10a.dev29+g342325a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.1/astroconda-dev/osx-64/jwst-0.12.1.dev0+g7a08b4d-py36_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.2/README.md b/jwstdp/0.12.2/README.md new file mode 100644 index 0000000..724e411 --- /dev/null +++ b/jwstdp/0.12.2/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.12.2 --file http://ssb.stsci.edu/releases/jwstdp/0.12.2/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.12.2 --file http://ssb.stsci.edu/releases/jwstdp/0.12.2/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh +$ bash Anaconda3-5.2.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh +$ bash Miniconda3-4.5.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.12.2 --file http://ssb.stsci.edu/releases/jwstdp/0.12.2/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.12.2 +``` diff --git a/jwstdp/0.12.2/dev/jwstdp-0.12.2-linux-py35.00.txt b/jwstdp/0.12.2/dev/jwstdp-0.12.2-linux-py35.00.txt new file mode 100644 index 0000000..2556a9d --- /dev/null +++ b/jwstdp/0.12.2/dev/jwstdp-0.12.2-linux-py35.00.txt @@ -0,0 +1,154 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.6-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py35hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py35h6bb024c_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.2-py35h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.7-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py35h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py35he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.2.0-py35heded4f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py35h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.3.1-py35hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.5-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.23.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py35h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.8.dev1+gc1b4c18-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.0-py35h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.6-py35h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py35h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.2-py35h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py35h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.0-py35hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py35hfa4b5c9_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.0-py35hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.0-py35h4989274_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev11501+g67370ac-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.1.1a.dev9+g359434a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.9.dev0+gf94a33d-py35_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.5.dev85+g1cf98be-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev33+g9c7d371-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.12.2.dev0+g553a1f8-py35_4.tar.bz2 diff --git a/jwstdp/0.12.2/dev/jwstdp-0.12.2-linux-py36.00.txt b/jwstdp/0.12.2/dev/jwstdp-0.12.2-linux-py36.00.txt new file mode 100644 index 0000000..7b67e14 --- /dev/null +++ b/jwstdp/0.12.2/dev/jwstdp-0.12.2-linux-py36.00.txt @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/numpy-base-1.15.4-py36h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/psutil-5.4.8-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/setuptools-40.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-3.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/requests-2.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/matplotlib-3.0.1-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/numpy-1.15.4-py36h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/scikit-learn-0.20.0-py36h4989274_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/astropy-4.0.0.dev11501+g67370ac-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/asdf-2.1.1a.dev9+g359434a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/photutils-0.5.dev65+gd29df63-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/gwcs-0.10a.dev33+g9c7d371-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/jwst-0.12.2.dev0+g553a1f8-py36_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.2/dev/jwstdp-0.12.2-osx-py35.00.txt b/jwstdp/0.12.2/dev/jwstdp-0.12.2-osx-py35.00.txt new file mode 100644 index 0000000..8c5fb8c --- /dev/null +++ b/jwstdp/0.12.2/dev/jwstdp-0.12.2-osx-py35.00.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2p-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.6-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.8.24-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py35hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py35h04f5b5a_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.2-py35h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.7.1-py35h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.7-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py35h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py35h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py35h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.2.0-py35hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.3.1-py35hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.5-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.23.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.23-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.19.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.13.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py35h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.8.dev1+gc1b4c18-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.0-py35h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.6-py35hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py35h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.2-py35h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py35h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.2-py35h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.0-py35h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py35h28f7352_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.19.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.0-py35h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.0-py35h4f467ca_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev11501+g67370ac-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.1.1a.dev9+g359434a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.9.dev0+gf94a33d-py35_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.5.dev85+g1cf98be-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev33+g9c7d371-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.12.2.dev0+g553a1f8-py35_4.tar.bz2 diff --git a/jwstdp/0.12.2/dev/jwstdp-0.12.2-osx-py36.00.txt b/jwstdp/0.12.2/dev/jwstdp-0.12.2-osx-py36.00.txt new file mode 100644 index 0000000..975b1fc --- /dev/null +++ b/jwstdp/0.12.2/dev/jwstdp-0.12.2-osx-py36.00.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/openssl-1.1.1-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/python-3.6.7-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/numpy-base-1.15.4-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/psutil-5.4.8-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/setuptools-40.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cryptography-2.3.1-py36ha12b0ac_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-3.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/requests-2.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/matplotlib-3.0.1-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/numpy-1.15.4-py36h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/scikit-learn-0.20.0-py36h4f467ca_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/astropy-4.0.0.dev11501+g67370ac-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/asdf-2.1.1a.dev9+g359434a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/photutils-0.5.dev85+g1cf98be-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/gwcs-0.10a.dev33+g9c7d371-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/jwst-0.12.2.dev0+g553a1f8-py36_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.2/latest-linux b/jwstdp/0.12.2/latest-linux new file mode 100644 index 0000000..7b67e14 --- /dev/null +++ b/jwstdp/0.12.2/latest-linux @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/numpy-base-1.15.4-py36h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/psutil-5.4.8-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/setuptools-40.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-3.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/requests-2.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/matplotlib-3.0.1-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/numpy-1.15.4-py36h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/linux-64/scikit-learn-0.20.0-py36h4989274_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/astropy-4.0.0.dev11501+g67370ac-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/asdf-2.1.1a.dev9+g359434a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/photutils-0.5.dev65+gd29df63-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/gwcs-0.10a.dev33+g9c7d371-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/linux-64/jwst-0.12.2.dev0+g553a1f8-py36_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.2/latest-osx b/jwstdp/0.12.2/latest-osx new file mode 100644 index 0000000..975b1fc --- /dev/null +++ b/jwstdp/0.12.2/latest-osx @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/openssl-1.1.1-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/python-3.6.7-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/numpy-base-1.15.4-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/psutil-5.4.8-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/setuptools-40.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cryptography-2.3.1-py36ha12b0ac_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-3.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/requests-2.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/matplotlib-3.0.1-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/numpy-1.15.4-py36h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/main/osx-64/scikit-learn-0.20.0-py36h4f467ca_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/astropy-4.0.0.dev11501+g67370ac-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/asdf-2.1.1a.dev9+g359434a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/photutils-0.5.dev85+g1cf98be-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/gwcs-0.10a.dev33+g9c7d371-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.2/astroconda-dev/osx-64/jwst-0.12.2.dev0+g553a1f8-py36_4.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.3/README.md b/jwstdp/0.12.3/README.md new file mode 100644 index 0000000..d7b3ae3 --- /dev/null +++ b/jwstdp/0.12.3/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.12.3 --file http://ssb.stsci.edu/releases/jwstdp/0.12.3/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.12.3 --file http://ssb.stsci.edu/releases/jwstdp/0.12.3/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.2.0-Linux-x86_64.sh +$ bash Anaconda3-5.2.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.11-Linux-x86_64.sh +$ bash Miniconda3-4.5.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.12.3 --file http://ssb.stsci.edu/releases/jwstdp/0.12.3/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.12.3 +``` diff --git a/jwstdp/0.12.3/dev/jwstdp-0.12.3-linux-py36.00.txt b/jwstdp/0.12.3/dev/jwstdp-0.12.3-linux-py36.00.txt new file mode 100644 index 0000000..8843806 --- /dev/null +++ b/jwstdp/0.12.3/dev/jwstdp-0.12.3-linux-py36.00.txt @@ -0,0 +1,140 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.97-h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.1.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.8-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.6-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.4.2-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.9.dev0+g7dae84d-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36h7c811a0_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev11955+g0e307d0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.1a.dev5+gad25745-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.9.dev164+ge96d57d-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev9+gea1765b-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev3+ge3610dd-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.1a.dev4+g6bcf54a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.12.3.dev0+gf6a9119-py36_5.tar.bz2 diff --git a/jwstdp/0.12.3/dev/jwstdp-0.12.3-linux-py36.01.txt b/jwstdp/0.12.3/dev/jwstdp-0.12.3-linux-py36.01.txt new file mode 100644 index 0000000..bd31f0b --- /dev/null +++ b/jwstdp/0.12.3/dev/jwstdp-0.12.3-linux-py36.01.txt @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/numpy-base-1.15.4-py36h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/psutil-5.4.8-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/setuptools-40.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-3.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/requests-2.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/matplotlib-3.0.1-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/numpy-1.15.4-py36h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/scikit-learn-0.20.0-py36h4989274_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/astropy-4.0.0.dev11501+g67370ac-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/asdf-2.1.1a.dev9+g359434a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/photutils-0.5.dev65+gd29df63-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/gwcs-0.10a.dev33+g9c7d371-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/jwst-0.12.3.dev0+gf6a9119-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.3/dev/jwstdp-0.12.3-linux-py37.00.txt b/jwstdp/0.12.3/dev/jwstdp-0.12.3-linux-py37.00.txt new file mode 100644 index 0000000..682afb1 --- /dev/null +++ b/jwstdp/0.12.3/dev/jwstdp-0.12.3-linux-py37.00.txt @@ -0,0 +1,140 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.97-h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.7.2-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.6.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.5-py37hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.1.0-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.1.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.4-py37hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.8-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py37h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py37he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.6-py37hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py37hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.3.0-py37h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.4.2-py37h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.2-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.4-py37h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.9.0-py37h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.9.dev0+g7dae84d-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py37h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.4-py37h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-18.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-2.0.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py37hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py37h7c811a0_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.1-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.2-py37hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev11955+g0e307d0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.1a.dev5+gad25745-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.9.dev164+ge96d57d-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev9+gea1765b-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.13.dev3+ge3610dd-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.1a.dev4+g6bcf54a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.12.3.dev0+gf6a9119-py37_5.tar.bz2 diff --git a/jwstdp/0.12.3/dev/jwstdp-0.12.3-osx-py36.00.txt b/jwstdp/0.12.3/dev/jwstdp-0.12.3-osx-py36.00.txt new file mode 100644 index 0000000..93b0180 --- /dev/null +++ b/jwstdp/0.12.3/dev/jwstdp-0.12.3-osx-py36.00.txt @@ -0,0 +1,130 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.1.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.8-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.6-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.4.2-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.9.dev0+g7dae84d-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36h1410ff5_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev11955+g0e307d0dd-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.1a.dev5+gad25745-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.9.dev164+ge96d57d8-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev9+gea1765b9-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev3+ge3610dd-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.1a.dev4+g6bcf54a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.12.3.dev0+gf6a9119d-py36_5.tar.bz2 diff --git a/jwstdp/0.12.3/dev/jwstdp-0.12.3-osx-py36.01.txt b/jwstdp/0.12.3/dev/jwstdp-0.12.3-osx-py36.01.txt new file mode 100644 index 0000000..2aa277e --- /dev/null +++ b/jwstdp/0.12.3/dev/jwstdp-0.12.3-osx-py36.01.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/openssl-1.1.1-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/python-3.6.7-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/numpy-base-1.15.4-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/psutil-5.4.8-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/setuptools-40.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cryptography-2.3.1-py36ha12b0ac_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-3.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/requests-2.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/matplotlib-3.0.1-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/numpy-1.15.4-py36h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/scikit-learn-0.20.0-py36h4f467ca_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/astropy-4.0.0.dev11501+g67370ac-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/asdf-2.1.1a.dev9+g359434a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/photutils-0.5.dev85+g1cf98be-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/gwcs-0.10a.dev33+g9c7d371-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/jwst-0.12.3.dev0+gf6a9119d-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.3/dev/jwstdp-0.12.3-osx-py37.00.txt b/jwstdp/0.12.3/dev/jwstdp-0.12.3-osx-py37.00.txt new file mode 100644 index 0000000..081b340 --- /dev/null +++ b/jwstdp/0.12.3/dev/jwstdp-0.12.3-osx-py37.00.txt @@ -0,0 +1,130 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.7.2-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.2.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.6.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.5-py37hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.1.0-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.1.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.4-py37h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.8-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py37h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.6-py37h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py37h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.3.0-py37hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.6.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.4.2-py37ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.2-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.4-py37hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.0.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.9.0-py37h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.9.dev0+g7dae84d-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py37h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.4-py37h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-18.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py37h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py37h1410ff5_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.2-py37h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev11955+g0e307d0dd-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.1a.dev5+gad25745-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.9.dev164+ge96d57d8-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev9+gea1765b9-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.13.dev3+ge3610dd-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.1a.dev4+g6bcf54a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.12.3.dev0+gf6a9119d-py37_5.tar.bz2 diff --git a/jwstdp/0.12.3/latest-linux b/jwstdp/0.12.3/latest-linux new file mode 100644 index 0000000..bd31f0b --- /dev/null +++ b/jwstdp/0.12.3/latest-linux @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/openssl-1.0.2p-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libpng-1.6.35-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libtiff-4.0.9-he85c1e1_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/sqlite-3.25.2-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/python-3.6.6-h6e4f718_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/lxml-4.2.5-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/markupsafe-1.0-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/msgpack-python-0.5.6-py36h6bb024c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/numpy-base-1.15.4-py36h81de0dd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/psutil-5.4.8-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/qt-5.9.6-h8703b6f_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/tblib-1.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pillow-5.3.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/setuptools-40.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cryptography-2.3.1-py36hc365091_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/cython-0.29-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pygments-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-3.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/requests-2.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/h5py-2.8.0-py36h989c5e5_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/matplotlib-3.0.1-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/mkl_fft-1.0.6-py36h7dd41cf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/mkl_random-1.0.1-py36h4414c95_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/numpy-1.15.4-py36h1d66e8a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pandas-0.23.4-py36h04863e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/scipy-1.1.0-py36hfa4b5c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/scikit-image-0.14.0-py36hf484d3e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/linux-64/scikit-learn-0.20.0-py36h4989274_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/astropy-4.0.0.dev11501+g67370ac-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/asdf-2.1.1a.dev9+g359434a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/photutils-0.5.dev65+gd29df63-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev11+g5b65401-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/gwcs-0.10a.dev33+g9c7d371-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/linux-64/jwst-0.12.3.dev0+gf6a9119-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.12.3/latest-osx b/jwstdp/0.12.3/latest-osx new file mode 100644 index 0000000..2aa277e --- /dev/null +++ b/jwstdp/0.12.3/latest-osx @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/intel-openmp-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libpng-1.6.35-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/mkl-2019.0-118.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/openssl-1.1.1-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libtiff-4.0.9-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/sqlite-3.25.2-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/python-3.6.7-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/atomicwrites-1.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/beautifulsoup4-4.6.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/certifi-2018.10.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/click-7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cloudpickle-0.6.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/dask-core-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/idna-2.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/lxml-4.2.5-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/markupsafe-1.0-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/mpmath-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/msgpack-python-0.5.6-py36h04f5b5a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/numpy-base-1.15.4-py36h8a80b8c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/parso-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pluggy-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/psutil-5.4.8-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pyparsing-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytz-2018.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/six-1.11.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/sortedcontainers-2.0.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/jedi-0.13.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/more-itertools-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/packaging-18.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/partd-0.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pillow-5.3.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/setuptools-40.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/zict-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cryptography-2.3.1-py36ha12b0ac_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/cython-0.29-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/distributed-1.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-3.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/wheel-0.32.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pip-18.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/prompt_toolkit-2.0.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-openfiles-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/ipython-7.1.1-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/urllib3-1.23-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/requests-2.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/bokeh-1.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/h5py-2.8.0-py36h878fce3_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/jplephem-2.8.dev1+gc1b4c18-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/matplotlib-3.0.1-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/mkl_fft-1.0.6-py36hb8a8100_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/mkl_random-1.0.1-py36h5d10147_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/numpy-1.15.4-py36h6a91979_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pandas-0.23.4-py36h6440ff4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-arraydiff-0.2-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-doctestplus-0.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/scipy-1.1.0-py36h28f7352_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/stsci.imagestats-1.5.3.dev0+g9f0dbc0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/dask-0.20.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/pytest-astropy-0.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/scikit-image-0.14.0-py36h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/main/osx-64/scikit-learn-0.20.0-py36h4f467ca_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/astropy-4.0.0.dev11501+g67370ac-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/asdf-2.1.1a.dev9+g359434a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/crds-7.2.9.dev0+gf94a33d-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/photutils-0.5.dev85+g1cf98be-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev12+g7ccbffc-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/stsci.tools-3.4.13.dev0+g5f25467-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/gwcs-0.10a.dev33+g9c7d371-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.12.3/astroconda-dev/osx-64/jwst-0.12.3.dev0+gf6a9119d-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.0/README.md b/jwstdp/0.13.0/README.md new file mode 100644 index 0000000..7eac1f1 --- /dev/null +++ b/jwstdp/0.13.0/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.13.0 --file http://ssb.stsci.edu/releases/jwstdp/0.13.0/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.13.0 --file http://ssb.stsci.edu/releases/jwstdp/0.13.0/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2018.12-Linux-x86_64.sh +$ bash Anaconda3-2018.12-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.12-Linux-x86_64.sh +$ bash Miniconda3-4.5.12-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.13.0 --file http://ssb.stsci.edu/releases/jwstdp/0.13.0/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.13.0 +``` diff --git a/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py36.00.txt b/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py36.00.txt new file mode 100644 index 0000000..8cb51e4 --- /dev/null +++ b/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py36.00.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.97-h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.0-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.1.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.5.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.4.1-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.5-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.4-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.10-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.24.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.0-py36h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.0.dev0+gd7d7ce8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.2-py36hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev12070+g8d97a4f-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.1a.dev10+gce0bd33-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0.dev51+gb254b63-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev9+gea1765b-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.1a.dev18+g2387668-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.13.0.dev0+g08df69d-py36_5.tar.bz2 diff --git a/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py36.01.txt b/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py36.01.txt new file mode 100644 index 0000000..804da4c --- /dev/null +++ b/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py36.01.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/lxml-4.3.0-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/markupsafe-1.1.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/numpy-base-1.15.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/parso-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/psutil-5.5.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pillow-5.4.1-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/setuptools-40.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/cryptography-2.5-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/cython-0.29.4-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/mkl_fft-1.0.10-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/numpy-1.15.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pandas-0.24.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/scipy-1.2.0-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/stsci.imagestats-1.6.0.dev0+gd7d7ce8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/scikit-learn-0.20.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/astropy-4.0.0.dev12070+g8d97a4f-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/asdf-2.3.1a.dev10+gce0bd33-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/crds-7.3.0.dev51+gb254b63-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/photutils-0.6.dev9+gea1765b-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/gwcs-0.10.1a.dev18+g2387668-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/jwst-0.13.0.dev0+g08df69d-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py37.00.txt b/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py37.00.txt new file mode 100644 index 0000000..a23aef2 --- /dev/null +++ b/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py37.00.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.97-h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.7.2-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.0-py37hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.1.0-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.1.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.4-py37hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.8.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.5.0-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.7.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py37h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py37he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py37hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-5.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.4.1-py37h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.7.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.5-py37h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.4-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.9.0-py37h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.9.dev1+g48c99ce-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py37h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.10-py37ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.4-py37h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.24.1-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py37hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.0-py37h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.0.dev0+gd7d7ce8-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.1-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.2-py37hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev12070+g8d97a4f-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.1a.dev10+gce0bd33-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0.dev51+gb254b63-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev9+gea1765b-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.1a.dev18+g2387668-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.13.0.dev0+g08df69d-py37_5.tar.bz2 diff --git a/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py37.01.txt b/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py37.01.txt new file mode 100644 index 0000000..ec51f50 --- /dev/null +++ b/jwstdp/0.13.0/dev/jwstdp-0.13.0-linux-py37.01.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.7.2-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.0-py37hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.1.0-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.1.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.15.4-py37hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.8.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.5.0-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.7.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py37h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py37he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py37hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-5.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.4.1-py37h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.7.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.5-py37h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.4-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.9.0-py37h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.4.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.9.dev1+g48c99ce-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py37h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.10-py37ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.15.4-py37h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.24.1-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py37hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.0-py37h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.0.dev0+gd7d7ce8-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.1-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.2-py37hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev12070+g8d97a4f-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.1a.dev10+gce0bd33-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0.dev51+gb254b63-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev9+gea1765b-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.1a.dev18+g2387668-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.13.0.dev0+g08df69d-py37_5.tar.bz2 diff --git a/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py36.00.txt b/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py36.00.txt new file mode 100644 index 0000000..3cef570 --- /dev/null +++ b/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py36.00.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.36-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.0-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.1.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.5.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.4.1-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.5-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.4-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.10-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.24.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.0-py36h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.0.dev0+gd7d7ce8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.2-py36h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev12070+g8d97a4f9d-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.1a.dev10+gce0bd33-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0.dev51+gb254b632-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev9+gea1765b9-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.1a.dev18+g2387668-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.13.0.dev0+g08df69d5-py36_5.tar.bz2 diff --git a/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py36.01.txt b/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py36.01.txt new file mode 100644 index 0000000..426e56e --- /dev/null +++ b/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py36.01.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libpng-1.6.36-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/lxml-4.3.0-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/markupsafe-1.1.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/numpy-base-1.15.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/parso-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/psutil-5.5.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pillow-5.4.1-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/setuptools-40.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/cryptography-2.5-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/cython-0.29.4-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/mkl_fft-1.0.10-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/numpy-1.15.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pandas-0.24.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/scipy-1.2.0-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/stsci.imagestats-1.6.0.dev0+gd7d7ce8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/scikit-image-0.14.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/scikit-learn-0.20.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/astropy-4.0.0.dev12070+g8d97a4f9d-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/asdf-2.3.1a.dev10+gce0bd33-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/crds-7.3.0.dev51+gb254b632-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/photutils-0.6.dev9+gea1765b9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/gwcs-0.10.1a.dev18+g2387668-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/jwst-0.13.0.dev0+g08df69d5-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py37.00.txt b/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py37.00.txt new file mode 100644 index 0000000..cf2000b --- /dev/null +++ b/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py37.00.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.36-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.97-ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.7.2-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.0-py37hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.1.0-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.1.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.4-py37h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.8.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.5.0-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.7.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py37h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py37h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-5.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.4.1-py37hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.7.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.5-py37ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.4-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.9.0-py37h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.9.dev1+g48c99ce-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py37h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.10-py37h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.4-py37hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.24.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py37h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.0-py37h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.0.dev0+gd7d7ce8-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.2-py37h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev12070+g8d97a4f9d-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.1a.dev10+gce0bd33-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0.dev51+gb254b632-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev9+gea1765b9-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.1a.dev18+g2387668-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.13.0.dev0+g08df69d5-py37_5.tar.bz2 diff --git a/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py37.01.txt b/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py37.01.txt new file mode 100644 index 0000000..30f048a --- /dev/null +++ b/jwstdp/0.13.0/dev/jwstdp-0.13.0-osx-py37.01.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.36-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.7.2-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.0-py37hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.1.0-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.1.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.15.4-py37h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.8.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.5.0-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.7.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.7.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py37h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py37h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-5.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.4.1-py37hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.7.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.5-py37ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.4-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.32.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.0.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.2.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.9.0-py37h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.4.1-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.9.dev1+g48c99ce-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py37h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.10-py37h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.15.4-py37hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.24.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py37h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.0-py37h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.0.dev0+gd7d7ce8-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.2-py37h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev12070+g8d97a4f9d-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.1a.dev10+gce0bd33-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0.dev51+gb254b632-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev2+gbec16a2-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev9+gea1765b9-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.1a.dev18+g2387668-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.13.0.dev0+g08df69d5-py37_5.tar.bz2 diff --git a/jwstdp/0.13.0/latest-linux b/jwstdp/0.13.0/latest-linux new file mode 100644 index 0000000..804da4c --- /dev/null +++ b/jwstdp/0.13.0/latest-linux @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/openssl-1.1.1a-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/lxml-4.3.0-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/markupsafe-1.1.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/numpy-base-1.15.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/parso-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/psutil-5.5.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/cffi-1.11.5-py36he75722e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pillow-5.4.1-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/setuptools-40.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/cryptography-2.5-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/cython-0.29.4-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/mkl_fft-1.0.10-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/numpy-1.15.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pandas-0.24.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/scipy-1.2.0-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/stsci.imagestats-1.6.0.dev0+gd7d7ce8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/linux-64/scikit-learn-0.20.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/astropy-4.0.0.dev12070+g8d97a4f-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/asdf-2.3.1a.dev10+gce0bd33-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/crds-7.3.0.dev51+gb254b63-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/photutils-0.6.dev9+gea1765b-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/gwcs-0.10.1a.dev18+g2387668-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/linux-64/jwst-0.13.0.dev0+g08df69d-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.0/latest-osx b/jwstdp/0.13.0/latest-osx new file mode 100644 index 0000000..426e56e --- /dev/null +++ b/jwstdp/0.13.0/latest-osx @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libpng-1.6.36-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/openssl-1.1.1a-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/cloudpickle-0.7.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/dask-core-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/lxml-4.3.0-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/markupsafe-1.1.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/numpy-base-1.15.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/parso-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pluggy-0.8.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/psutil-5.5.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/py-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/cffi-1.11.5-py36h6174b99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/jedi-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pillow-5.4.1-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/python-dateutil-2.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/setuptools-40.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/cryptography-2.5-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/cython-0.29.4-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/wheel-0.32.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pip-19.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/noarch/prompt_toolkit-2.0.8-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/ipython-7.2.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/imageio-2.4.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/mkl_fft-1.0.10-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/numpy-1.15.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pandas-0.24.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/scipy-1.2.0-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/stsci.imagestats-1.6.0.dev0+gd7d7ce8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/scikit-image-0.14.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/main/osx-64/scikit-learn-0.20.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/astropy-4.0.0.dev12070+g8d97a4f9d-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/asdf-2.3.1a.dev10+gce0bd33-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/crds-7.3.0.dev51+gb254b632-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/drizzle-1.10.dev2+gbec16a2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/photutils-0.6.dev9+gea1765b9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/spherical-geometry-1.2.6.dev1+gd13fe4b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/stsci.tools-3.5.0rc.dev0+g567b3b8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/gwcs-0.10.1a.dev18+g2387668-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.0/astroconda-dev/osx-64/jwst-0.13.0.dev0+g08df69d5-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.1/README.md b/jwstdp/0.13.1/README.md new file mode 100644 index 0000000..04d50be --- /dev/null +++ b/jwstdp/0.13.1/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.13.1 --file http://ssb.stsci.edu/releases/jwstdp/0.13.1/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.13.1 --file http://ssb.stsci.edu/releases/jwstdp/0.13.1/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2018.12-Linux-x86_64.sh +$ bash Anaconda3-2018.12-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.5.12-Linux-x86_64.sh +$ bash Miniconda3-4.5.12-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.13.1 --file http://ssb.stsci.edu/releases/jwstdp/0.13.1/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.13.1 +``` diff --git a/jwstdp/0.13.1/dev/jwstdp-0.13.1-linux-py36.00.txt b/jwstdp/0.13.1/dev/jwstdp-0.13.1-linux-py36.00.txt new file mode 100644 index 0000000..76cbade --- /dev/null +++ b/jwstdp/0.13.1/dev/jwstdp-0.13.1-linux-py36.00.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/openssl-1.1.1b-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/noarch/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cloudpickle-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/noarch/dask-core-1.1.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/lxml-4.3.1-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/parso-0.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pluggy-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/psutil-5.5.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cffi-1.12.1-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pillow-5.4.1-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/setuptools-40.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cryptography-2.5-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cython-0.29.5-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/wheel-0.33.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pip-19.0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/ipython-7.3.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/mkl_fft-1.0.10-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/numpy-1.16.2-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/numpy-base-1.16.2-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pandas-0.24.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/stsci.imagestats-1.6.0.dev2+g4bf5bcb-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/scikit-learn-0.20.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/astropy-4.0.0.dev12193+g4fe967f-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/asdf-2.3.2a.dev11+g3762af6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/crds-7.3.0.dev51+gb254b63-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/drizzle-1.10.dev6+gb52a086-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/photutils-0.6.dev17+ge5ad7dd-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev0+gd6a0ee9-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/gwcs-0.10.1a.dev25+g86faab6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/jwst-0.13.1.dev0+gc4ddde5-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.1/dev/jwstdp-0.13.1-linux-py37.00.txt b/jwstdp/0.13.1/dev/jwstdp-0.13.1-linux-py37.00.txt new file mode 100644 index 0000000..e1d3a5c --- /dev/null +++ b/jwstdp/0.13.1/dev/jwstdp-0.13.1-linux-py37.00.txt @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.1.1b-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.7.2-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-1.1.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/filelock-3.0.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.3.1-py37hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.1.1-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.1.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.46-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.3.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.5.0-py37h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.19-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.13-py37h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py37hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/soupsieve-1.7.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.1.1-py37h7b6447c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.7.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.12.1-py37h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py37h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.13.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-5.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.4.1-py37h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py37h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-40.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.5-py37h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.29.5-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.33.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-19.0.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-2.0.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-19.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-openfiles-0.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-7.3.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.9.0-py37h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.5.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.9.dev1+g48c99ce-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-3.0.2-py37h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.10-py37ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.2-py37hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.16.2-py37h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.16.2-py37hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.24.1-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-1.0.1-py37hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.2.1-py37h7c811a0_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.6.0.dev2+g4bf5bcb-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.14.1-py37he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-learn-0.20.2-py37hd81dba3_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev12193+g4fe967f-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.3.2a.dev11+g3762af6-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.3.0.dev51+gb254b63-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev6+gb52a086-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.6.dev17+ge5ad7dd-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.10.dev0+gd6a0ee9-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10.1a.dev25+g86faab6-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.1.dev0+g642799f-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.13.1.dev0+gc4ddde5-py37_5.tar.bz2 diff --git a/jwstdp/0.13.1/dev/jwstdp-0.13.1-osx-py36.00.txt b/jwstdp/0.13.1/dev/jwstdp-0.13.1-osx-py36.00.txt new file mode 100644 index 0000000..b51a508 --- /dev/null +++ b/jwstdp/0.13.1/dev/jwstdp-0.13.1-osx-py36.00.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libpng-1.6.36-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/openssl-1.1.1b-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/noarch/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cloudpickle-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/noarch/dask-core-1.1.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/lxml-4.3.1-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/parso-0.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pluggy-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/psutil-5.5.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cffi-1.12.1-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pillow-5.4.1-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/setuptools-40.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cryptography-2.5-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cython-0.29.5-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/wheel-0.33.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pip-19.0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/ipython-7.3.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/mkl_fft-1.0.10-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/numpy-1.16.2-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/numpy-base-1.16.2-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pandas-0.24.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/stsci.imagestats-1.6.0.dev2+g4bf5bcb-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/scikit-image-0.14.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/scikit-learn-0.20.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/astropy-4.0.0.dev12193+g4fe967fc5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/asdf-2.3.2a.dev11+g3762af6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/crds-7.3.0.dev51+gb254b632-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/drizzle-1.10.dev6+gb52a086-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/photutils-0.6.dev17+ge5ad7dda-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev0+gd6a0ee9-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/stsci.tools-3.5.1a.dev0+g567b3b8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/gwcs-0.10.1a.dev25+g86faab6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/jwst-0.13.1.dev0+gc4ddde5e-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.1/dev/jwstdp-0.13.1-osx-py37.00.txt b/jwstdp/0.13.1/dev/jwstdp-0.13.1-osx-py37.00.txt new file mode 100644 index 0000000..865e552 --- /dev/null +++ b/jwstdp/0.13.1/dev/jwstdp-0.13.1-osx-py37.00.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.36-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.1.1b-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.7.2-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.2.0-py37h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.11.29-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-1.1.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/filelock-3.0.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.3.1-py37hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.1.1-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.1.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.46-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.3.4-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.5-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.5.0-py37h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.19-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.13-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.12.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/soupsieve-1.7.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.1.1-py37h1de35cc_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.7.1-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.12.1-py37hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py37h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.13.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-5.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.4.1-py37hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-40.8.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.5-py37ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.29.5-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.2-py37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-4.3.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.33.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-19.0.3-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-2.0.9-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-19.0.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-openfiles-0.3.2-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-remotedata-0.3.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-7.3.0-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.24.1-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.21.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.9.0-py37h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.5.0-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.9.dev1+g48c99ce-py37_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-3.0.2-py37h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.10-py37h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.2-py37h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.16.2-py37hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.16.2-py37h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.24.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-arraydiff-0.3-py37h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-doctestplus-0.2.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-1.0.1-py37h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.2.1-py37h1410ff5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.6.0.dev2+g4bf5bcb-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-astropy-0.5.0-py37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.14.1-py37h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-learn-0.20.2-py37h27c97d8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev12193+g4fe967fc5-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.3.2a.dev11+g3762af6-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.3.0.dev51+gb254b632-py37_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev6+gb52a086-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.6.dev17+ge5ad7dda-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.10.dev0+gd6a0ee9-py37_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.5.1a.dev0+g567b3b8-py37_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10.1a.dev25+g86faab6-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.1.dev0+g642799f-py37_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.13.1.dev0+gc4ddde5e-py37_5.tar.bz2 diff --git a/jwstdp/0.13.1/latest-linux b/jwstdp/0.13.1/latest-linux new file mode 100644 index 0000000..76cbade --- /dev/null +++ b/jwstdp/0.13.1/latest-linux @@ -0,0 +1,142 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/openssl-1.1.1b-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libpng-1.6.36-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/sqlite-3.26.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/noarch/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cloudpickle-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/noarch/dask-core-1.1.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/kiwisolver-1.0.1-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/lxml-4.3.1-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/parso-0.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pluggy-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/psutil-5.5.0-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pyyaml-3.13-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/tornado-5.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cffi-1.12.1-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pillow-5.4.1-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/setuptools-40.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cryptography-2.5-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/cython-0.29.5-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/wheel-0.33.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pip-19.0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/ipython-7.3.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/matplotlib-3.0.2-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/mkl_fft-1.0.10-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/numpy-1.16.2-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/numpy-base-1.16.2-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pandas-0.24.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pywavelets-1.0.1-py36hdd07704_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/stsci.imagestats-1.6.0.dev2+g4bf5bcb-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/scikit-image-0.14.1-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/linux-64/scikit-learn-0.20.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/astropy-4.0.0.dev12193+g4fe967f-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/asdf-2.3.2a.dev11+g3762af6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/crds-7.3.0.dev51+gb254b63-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/drizzle-1.10.dev6+gb52a086-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/photutils-0.6.dev17+ge5ad7dd-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev0+gd6a0ee9-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/stsci.tools-3.5.0rc2.dev0+g9a02250-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/gwcs-0.10.1a.dev25+g86faab6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/linux-64/jwst-0.13.1.dev0+gc4ddde5-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.1/latest-osx b/jwstdp/0.13.1/latest-osx new file mode 100644 index 0000000..b51a508 --- /dev/null +++ b/jwstdp/0.13.1/latest-osx @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/intel-openmp-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libpng-1.6.36-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/mkl-2019.1-144.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/openssl-1.1.1b-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/sqlite-3.26.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/noarch/atomicwrites-1.3.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/attrs-18.2.0-py36h28b3542_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/certifi-2018.11.29-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cloudpickle-0.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/noarch/dask-core-1.1.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/decorator-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/kiwisolver-1.0.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/lxml-4.3.1-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/parso-0.3.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pluggy-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/psutil-5.5.0-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pyparsing-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytz-2018.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pyyaml-3.13-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/soupsieve-1.7.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/tornado-5.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cffi-1.12.1-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/more-itertools-5.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pillow-5.4.1-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/setuptools-40.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cryptography-2.5-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/cython-0.29.5-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/jinja2-2.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/networkx-2.2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pygments-2.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/wheel-0.33.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pip-19.0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/ipython-7.3.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/urllib3-1.24.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/matplotlib-3.0.2-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/mkl_fft-1.0.10-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/numpy-1.16.2-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/numpy-base-1.16.2-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pandas-0.24.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-doctestplus-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pywavelets-1.0.1-py36h1d22016_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/stsci.imagestats-1.6.0.dev2+g4bf5bcb-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/scikit-image-0.14.1-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/main/osx-64/scikit-learn-0.20.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/astropy-4.0.0.dev12193+g4fe967fc5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/asdf-2.3.2a.dev11+g3762af6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/crds-7.3.0.dev51+gb254b632-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/drizzle-1.10.dev6+gb52a086-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/photutils-0.6.dev17+ge5ad7dda-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev0+gd6a0ee9-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/stsci.tools-3.5.1a.dev0+g567b3b8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/gwcs-0.10.1a.dev25+g86faab6-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.1/astroconda-dev/osx-64/jwst-0.13.1.dev0+gc4ddde5e-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.2/README.md b/jwstdp/0.13.2/README.md new file mode 100644 index 0000000..b7266b4 --- /dev/null +++ b/jwstdp/0.13.2/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.13.2 --file http://ssb.stsci.edu/releases/jwstdp/0.13.2/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.13.2 --file http://ssb.stsci.edu/releases/jwstdp/0.13.2/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.03-Linux-x86_64.sh +$ bash Anaconda3-2019.03-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.6.14-Linux-x86_64.sh +$ bash Miniconda3-4.6.14-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.13.2 --file http://ssb.stsci.edu/releases/jwstdp/0.13.2/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.13.2 +``` diff --git a/jwstdp/0.13.2/dev/jwstdp-0.13.2-linux-py36.00.txt b/jwstdp/0.13.2/dev/jwstdp-0.13.2-linux-py36.00.txt new file mode 100644 index 0000000..0294bbe --- /dev/null +++ b/jwstdp/0.13.2/dev/jwstdp-0.13.2-linux-py36.00.txt @@ -0,0 +1,141 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/openssl-1.1.1b-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/cython-0.29.7-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pygments-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-4.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/wheel-0.33.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/matplotlib-3.0.3-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/numpy-1.16.3-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/numpy-base-1.16.3-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/scikit-learn-0.20.3-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/astropy-4.0.0.dev12832+ga85a0747c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/crds-7.3.0.dev190+g049ec698-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/gwcs-0.10.1a.dev29+gedd279a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/photutils-0.6.dev137+gf72f5be6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/jwst-0.13.2.dev0+g0ba94db7-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.2/dev/jwstdp-0.13.2-osx-py36.00.txt b/jwstdp/0.13.2/dev/jwstdp-0.13.2-osx-py36.00.txt new file mode 100644 index 0000000..3bad1c7 --- /dev/null +++ b/jwstdp/0.13.2/dev/jwstdp-0.13.2-osx-py36.00.txt @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/openssl-1.1.1b-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/cython-0.29.7-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pygments-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-4.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/wheel-0.33.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/matplotlib-3.0.3-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/numpy-1.16.3-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/numpy-base-1.16.3-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/scikit-learn-0.20.3-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/astropy-4.0.0.dev12832+ga85a0747c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/crds-7.3.0.dev190+g049ec698-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/gwcs-0.10.1a.dev29+gedd279a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/photutils-0.6.dev137+gf72f5be6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/jwst-0.13.2.dev0+g0ba94db7-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.2/latest-linux b/jwstdp/0.13.2/latest-linux new file mode 100644 index 0000000..0294bbe --- /dev/null +++ b/jwstdp/0.13.2/latest-linux @@ -0,0 +1,141 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/openssl-1.1.1b-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/cryptography-2.6.1-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/cython-0.29.7-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pygments-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-4.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/wheel-0.33.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/matplotlib-3.0.3-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/numpy-1.16.3-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/numpy-base-1.16.3-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/linux-64/scikit-learn-0.20.3-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/astropy-4.0.0.dev12832+ga85a0747c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/crds-7.3.0.dev190+g049ec698-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/gwcs-0.10.1a.dev29+gedd279a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/photutils-0.6.dev137+gf72f5be6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/linux-64/jwst-0.13.2.dev0+g0ba94db7-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.2/latest-osx b/jwstdp/0.13.2/latest-osx new file mode 100644 index 0000000..3bad1c7 --- /dev/null +++ b/jwstdp/0.13.2/latest-osx @@ -0,0 +1,131 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/ca-certificates-2019.1.23-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/intel-openmp-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/mkl-2019.3-199.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/openssl-1.1.1b-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/cryptography-2.6.1-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/cython-0.29.7-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/noarch/pygments-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-4.4.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/wheel-0.33.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/requests-2.21.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/matplotlib-3.0.3-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/numpy-1.16.3-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/numpy-base-1.16.3-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/main/osx-64/scikit-learn-0.20.3-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/astropy-4.0.0.dev12832+ga85a0747c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/crds-7.3.0.dev190+g049ec698-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/gwcs-0.10.1a.dev29+gedd279a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/photutils-0.6.dev137+gf72f5be6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.2/astroconda-dev/osx-64/jwst-0.13.2.dev0+g0ba94db7-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.3/README.md b/jwstdp/0.13.3/README.md new file mode 100644 index 0000000..98e7837 --- /dev/null +++ b/jwstdp/0.13.3/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.13.3 --file http://ssb.stsci.edu/releases/jwstdp/0.13.3/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.13.3 --file http://ssb.stsci.edu/releases/jwstdp/0.13.3/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.03-Linux-x86_64.sh +$ bash Anaconda3-2019.03-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.6.14-Linux-x86_64.sh +$ bash Miniconda3-4.6.14-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.13.3 --file http://ssb.stsci.edu/releases/jwstdp/0.13.3/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.13.3 +``` diff --git a/jwstdp/0.13.3/dev/jwstdp-0.13.3-linux-py36.00.txt b/jwstdp/0.13.3/dev/jwstdp-0.13.3-linux-py36.00.txt new file mode 100644 index 0000000..2f90d89 --- /dev/null +++ b/jwstdp/0.13.3/dev/jwstdp-0.13.3-linux-py36.00.txt @@ -0,0 +1,143 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pygments-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/astropy-4.0.0.dev12984+gdf207f7bf-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/crds-7.3.3.dev7+geb2adcf9-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/gwcs-0.10.1a.dev31+gfbb6357-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/photutils-0.6.dev223+g4199d632-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/jwst-0.13.3.dev0+gc3e8e8e1-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.3/dev/jwstdp-0.13.3-osx-py36.00.txt b/jwstdp/0.13.3/dev/jwstdp-0.13.3-osx-py36.00.txt new file mode 100644 index 0000000..18261ac --- /dev/null +++ b/jwstdp/0.13.3/dev/jwstdp-0.13.3-osx-py36.00.txt @@ -0,0 +1,134 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pygments-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/astropy-4.0.0.dev12984+gdf207f7bf-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/crds-7.3.3.dev7+geb2adcf9-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/gwcs-0.10.1a.dev31+gfbb6357-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/photutils-0.6.dev223+g4199d632-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/jwst-0.13.3.dev0+gc3e8e8e1-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.3/latest-linux b/jwstdp/0.13.3/latest-linux new file mode 100644 index 0000000..2f90d89 --- /dev/null +++ b/jwstdp/0.13.3/latest-linux @@ -0,0 +1,143 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libgcc-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libstdcxx-ng-8.2.0-hdf63c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/cython-0.29.8-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pygments-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/astropy-4.0.0.dev12984+gdf207f7bf-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/crds-7.3.3.dev7+geb2adcf9-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/gwcs-0.10.1a.dev31+gfbb6357-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/photutils-0.6.dev223+g4199d632-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/linux-64/jwst-0.13.3.dev0+gc3e8e8e1-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.3/latest-osx b/jwstdp/0.13.3/latest-osx new file mode 100644 index 0000000..18261ac --- /dev/null +++ b/jwstdp/0.13.3/latest-osx @@ -0,0 +1,134 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/cloudpickle-1.0.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/filelock-3.0.10-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pluggy-0.11.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/cython-0.29.8-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/noarch/pygments-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-4.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/astropy-4.0.0.dev12984+gdf207f7bf-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/crds-7.3.3.dev7+geb2adcf9-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/gwcs-0.10.1a.dev31+gfbb6357-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/photutils-0.6.dev223+g4199d632-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev0+g9a02250-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.3/astroconda-dev/osx-64/jwst-0.13.3.dev0+gc3e8e8e1-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.4/README.md b/jwstdp/0.13.4/README.md new file mode 100644 index 0000000..c008182 --- /dev/null +++ b/jwstdp/0.13.4/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.13.4 --file http://ssb.stsci.edu/releases/jwstdp/0.13.4/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.13.4 --file http://ssb.stsci.edu/releases/jwstdp/0.13.4/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.03-Linux-x86_64.sh +$ bash Anaconda3-2019.03-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.6.14-Linux-x86_64.sh +$ bash Miniconda3-4.6.14-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.13.4 --file http://ssb.stsci.edu/releases/jwstdp/0.13.4/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.13.4 +``` diff --git a/jwstdp/0.13.4/dev/jwstdp-0.13.4-linux-py36.00.txt b/jwstdp/0.13.4/dev/jwstdp-0.13.4-linux-py36.00.txt new file mode 100644 index 0000000..a1bcf67 --- /dev/null +++ b/jwstdp/0.13.4/dev/jwstdp-0.13.4-linux-py36.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/cython-0.29.10-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/astropy-4.0.0.dev13155+g4bf8a9175-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/gwcs-0.10.1a.dev31+gfbb6357-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/photutils-0.6.dev285+g5eb747e0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/jwst-0.13.4.dev0+g24ecc44b-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.4/dev/jwstdp-0.13.4-osx-py36.00.txt b/jwstdp/0.13.4/dev/jwstdp-0.13.4-osx-py36.00.txt new file mode 100644 index 0000000..b41458c --- /dev/null +++ b/jwstdp/0.13.4/dev/jwstdp-0.13.4-osx-py36.00.txt @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/cython-0.29.10-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/astropy-4.0.0.dev13155+g4bf8a9175-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/gwcs-0.10.1a.dev31+gfbb6357-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/photutils-0.6.dev285+g5eb747e0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/jwst-0.13.4.dev0+g24ecc44b-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.4/latest-linux b/jwstdp/0.13.4/latest-linux new file mode 100644 index 0000000..a1bcf67 --- /dev/null +++ b/jwstdp/0.13.4/latest-linux @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/cython-0.29.10-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/astropy-4.0.0.dev13155+g4bf8a9175-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/gwcs-0.10.1a.dev31+gfbb6357-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/photutils-0.6.dev285+g5eb747e0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/linux-64/jwst-0.13.4.dev0+g24ecc44b-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.4/latest-osx b/jwstdp/0.13.4/latest-osx new file mode 100644 index 0000000..b41458c --- /dev/null +++ b/jwstdp/0.13.4/latest-osx @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/cython-0.29.10-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/astropy-4.0.0.dev13155+g4bf8a9175-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/gwcs-0.10.1a.dev31+gfbb6357-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/photutils-0.6.dev285+g5eb747e0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.4/astroconda-dev/osx-64/jwst-0.13.4.dev0+g24ecc44b-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.5/README.md b/jwstdp/0.13.5/README.md new file mode 100644 index 0000000..56d1379 --- /dev/null +++ b/jwstdp/0.13.5/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.13.5 --file http://ssb.stsci.edu/releases/jwstdp/0.13.5/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.13.5 --file http://ssb.stsci.edu/releases/jwstdp/0.13.5/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.03-Linux-x86_64.sh +$ bash Anaconda3-2019.03-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.6.14-Linux-x86_64.sh +$ bash Miniconda3-4.6.14-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.13.5 --file http://ssb.stsci.edu/releases/jwstdp/0.13.5/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.13.5 +``` diff --git a/jwstdp/0.13.5/dev/jwstdp-0.13.5-linux-py36.00.txt b/jwstdp/0.13.5/dev/jwstdp-0.13.5-linux-py36.00.txt new file mode 100644 index 0000000..2a25163 --- /dev/null +++ b/jwstdp/0.13.5/dev/jwstdp-0.13.5-linux-py36.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/cython-0.29.10-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/astropy-4.0.0.dev13155+g4bf8a9175-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/photutils-0.6.dev300+g6cfbd4ae-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/jwst-0.13.5.dev0+g40a542a5-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.5/dev/jwstdp-0.13.5-osx-py36.00.txt b/jwstdp/0.13.5/dev/jwstdp-0.13.5-osx-py36.00.txt new file mode 100644 index 0000000..b15207c --- /dev/null +++ b/jwstdp/0.13.5/dev/jwstdp-0.13.5-osx-py36.00.txt @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/cython-0.29.10-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/astropy-4.0.0.dev13155+g4bf8a9175-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/photutils-0.6.dev300+g6cfbd4ae-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/jwst-0.13.5.dev0+g40a542a5-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.5/latest-linux b/jwstdp/0.13.5/latest-linux new file mode 100644 index 0000000..2a25163 --- /dev/null +++ b/jwstdp/0.13.5/latest-linux @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/cython-0.29.10-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/astropy-4.0.0.dev13155+g4bf8a9175-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/photutils-0.6.dev300+g6cfbd4ae-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/linux-64/jwst-0.13.5.dev0+g40a542a5-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.5/latest-osx b/jwstdp/0.13.5/latest-osx new file mode 100644 index 0000000..b15207c --- /dev/null +++ b/jwstdp/0.13.5/latest-osx @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/certifi-2019.3.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/cython-0.29.10-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/asdf-2.4.0.dev.dev57+g178194c-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/astropy-4.0.0.dev13155+g4bf8a9175-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/photutils-0.6.dev300+g6cfbd4ae-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.5/astroconda-dev/osx-64/jwst-0.13.5.dev0+g40a542a5-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.6/README.md b/jwstdp/0.13.6/README.md new file mode 100644 index 0000000..2186072 --- /dev/null +++ b/jwstdp/0.13.6/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.13.6 --file http://ssb.stsci.edu/releases/jwstdp/0.13.6/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.13.6 --file http://ssb.stsci.edu/releases/jwstdp/0.13.6/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.03-Linux-x86_64.sh +$ bash Anaconda3-2019.03-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.6.14-Linux-x86_64.sh +$ bash Miniconda3-4.6.14-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.13.6 --file http://ssb.stsci.edu/releases/jwstdp/0.13.6/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.13.6 +``` diff --git a/jwstdp/0.13.6/dev/jwstdp-0.13.6-linux-py36.00.txt b/jwstdp/0.13.6/dev/jwstdp-0.13.6-linux-py36.00.txt new file mode 100644 index 0000000..d394b05 --- /dev/null +++ b/jwstdp/0.13.6/dev/jwstdp-0.13.6-linux-py36.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/cython-0.29.10-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/astropy-4.0.0.dev13234+g25bfead6c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/jwst-0.13.6.dev0+g2bc64cca-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.6/dev/jwstdp-0.13.6-osx-py36.00.txt b/jwstdp/0.13.6/dev/jwstdp-0.13.6-osx-py36.00.txt new file mode 100644 index 0000000..92510d8 --- /dev/null +++ b/jwstdp/0.13.6/dev/jwstdp-0.13.6-osx-py36.00.txt @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/cython-0.29.10-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/astropy-4.0.0.dev13234+g25bfead6c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/jwst-0.13.6.dev0+g2bc64cca-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.6/latest-linux b/jwstdp/0.13.6/latest-linux new file mode 100644 index 0000000..d394b05 --- /dev/null +++ b/jwstdp/0.13.6/latest-linux @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/cython-0.29.10-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/astropy-4.0.0.dev13234+g25bfead6c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/linux-64/jwst-0.13.6.dev0+g2bc64cca-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.6/latest-osx b/jwstdp/0.13.6/latest-osx new file mode 100644 index 0000000..92510d8 --- /dev/null +++ b/jwstdp/0.13.6/latest-osx @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/cython-0.29.10-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/astropy-4.0.0.dev13234+g25bfead6c-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.6/astroconda-dev/osx-64/jwst-0.13.6.dev0+g2bc64cca-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.7/README.md b/jwstdp/0.13.7/README.md new file mode 100644 index 0000000..272879a --- /dev/null +++ b/jwstdp/0.13.7/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.13.7 --file http://ssb.stsci.edu/releases/jwstdp/0.13.7/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.13.7 --file http://ssb.stsci.edu/releases/jwstdp/0.13.7/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.03-Linux-x86_64.sh +$ bash Anaconda3-2019.03-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.6.14-Linux-x86_64.sh +$ bash Miniconda3-4.6.14-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.13.7 --file http://ssb.stsci.edu/releases/jwstdp/0.13.7/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.13.7 +``` diff --git a/jwstdp/0.13.7/dev/jwstdp-0.13.7-linux-py36.00.txt b/jwstdp/0.13.7/dev/jwstdp-0.13.7-linux-py36.00.txt new file mode 100644 index 0000000..2ff10f9 --- /dev/null +++ b/jwstdp/0.13.7/dev/jwstdp-0.13.7-linux-py36.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/cython-0.29.10-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/astropy-4.0.0.dev13236+g15ce42165-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/jwst-0.13.7.dev0+ged648021-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.7/dev/jwstdp-0.13.7-osx-py36.00.txt b/jwstdp/0.13.7/dev/jwstdp-0.13.7-osx-py36.00.txt new file mode 100644 index 0000000..aed8c09 --- /dev/null +++ b/jwstdp/0.13.7/dev/jwstdp-0.13.7-osx-py36.00.txt @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/cython-0.29.10-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/astropy-4.0.0.dev13236+g15ce42165-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/jwst-0.13.7.dev0+ged648021-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.7/latest-linux b/jwstdp/0.13.7/latest-linux new file mode 100644 index 0000000..2ff10f9 --- /dev/null +++ b/jwstdp/0.13.7/latest-linux @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/cython-0.29.10-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/astropy-4.0.0.dev13236+g15ce42165-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/linux-64/jwst-0.13.7.dev0+ged648021-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.7/latest-osx b/jwstdp/0.13.7/latest-osx new file mode 100644 index 0000000..aed8c09 --- /dev/null +++ b/jwstdp/0.13.7/latest-osx @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/cython-0.29.10-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/astropy-4.0.0.dev13236+g15ce42165-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.7/astroconda-dev/osx-64/jwst-0.13.7.dev0+ged648021-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.8/README.md b/jwstdp/0.13.8/README.md new file mode 100644 index 0000000..a87c7c3 --- /dev/null +++ b/jwstdp/0.13.8/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.13.8 --file http://ssb.stsci.edu/releases/jwstdp/0.13.8/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.13.8 --file http://ssb.stsci.edu/releases/jwstdp/0.13.8/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.07-Linux-x86_64.sh +$ bash Anaconda3-2019.07-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.10-Linux-x86_64.sh +$ bash Miniconda3-4.7.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.13.8 --file http://ssb.stsci.edu/releases/jwstdp/0.13.8/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.13.8 +``` diff --git a/jwstdp/0.13.8/dev/jwstdp-0.13.8-linux-py36.00.txt b/jwstdp/0.13.8/dev/jwstdp-0.13.8-linux-py36.00.txt new file mode 100644 index 0000000..ab778b2 --- /dev/null +++ b/jwstdp/0.13.8/dev/jwstdp-0.13.8-linux-py36.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/cython-0.29.10-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/astropy-4.0.0.dev13236+g15ce42165-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/jwst-0.13.8.dev0+gebd467ed-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.8/dev/jwstdp-0.13.8-osx-py36.00.txt b/jwstdp/0.13.8/dev/jwstdp-0.13.8-osx-py36.00.txt new file mode 100644 index 0000000..55ad69f --- /dev/null +++ b/jwstdp/0.13.8/dev/jwstdp-0.13.8-osx-py36.00.txt @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/cython-0.29.10-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/astropy-4.0.0.dev13236+g15ce42165-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/jwst-0.13.8.dev0+gebd467ed-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.8/latest-linux b/jwstdp/0.13.8/latest-linux new file mode 100644 index 0000000..ab778b2 --- /dev/null +++ b/jwstdp/0.13.8/latest-linux @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/intel-openmp-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libgfortran-ng-7.3.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/expat-2.2.6-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libgcc-7.2.0-h69d50b8_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libuuid-1.0.3-h1bed415_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/mkl-2019.4-243.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/ncurses-6.1-he6710b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/openssl-1.1.1c-h7b6447c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pcre-8.43-he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/zlib-1.2.11-h7b6447c_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/glib-2.56.2-hd408876_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/hdf5-1.10.4-hb1b8bf9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libedit-3.1.20181209-hc058e9b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libpng-1.6.37-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libxml2-2.9.9-he19cac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/readline-7.0-h7b6447c_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/tk-8.6.8-hbc83047_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/zstd-1.3.7-h0b5b093_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/dbus-1.13.6-h746ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/freetype-2.9.1-h8a8886c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libtiff-4.0.10-h2733197_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/libxslt-1.1.33-h7d1a2b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/sqlite-3.28.0-h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/unixodbc-2.3.7-h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/fontconfig-2.13.0-h9420a91_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/python-3.6.8-h0371630_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/kiwisolver-1.1.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/lxml-4.3.3-py36hefd8a0e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/markupsafe-1.1.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/psutil-5.6.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pyyaml-5.1-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/qt-5.9.7-h5867ecd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/tornado-6.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/cffi-1.12.3-py36h2e261b9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/cytoolz-0.9.0.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pillow-6.0.0-py36h34e0f95_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pyqt-5.9.2-py36h05f1152_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/cryptography-2.7-py36h1ba5d50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/cython-0.29.10-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/h5py-2.9.0-py36h7918eee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/matplotlib-3.1.0-py36h5429711_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/mkl-service-2.0.2-py36h7b6447c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/mkl_fft-1.0.12-py36ha843d7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/mkl_random-1.0.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/numpy-1.16.4-py36h7e9f1db_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/numpy-base-1.16.4-py36hde5b4d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pandas-0.24.2-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pywavelets-1.0.3-py36hdd07704_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/scipy-1.2.1-py36h7c811a0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/scikit-image-0.15.0-py36he6710b0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/linux-64/scikit-learn-0.21.2-py36hd81dba3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/astropy-4.0.0.dev13236+g15ce42165-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/linux-64/jwst-0.13.8.dev0+gebd467ed-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.13.8/latest-osx b/jwstdp/0.13.8/latest-osx new file mode 100644 index 0000000..55ad69f --- /dev/null +++ b/jwstdp/0.13.8/latest-osx @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/ca-certificates-2019.5.15-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/intel-openmp-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/llvm-openmp-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/zlib-1.2.11-h1de35cc_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libcxx-4.0.1-hcfea43d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libpng-1.6.37-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/mkl-2019.4-233.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/openssl-1.1.1c-h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/tk-8.6.8-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/zstd-1.3.7-h5bba6e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/cfitsio-3.440-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/freetype-2.9.1-hb4e5f40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/hdf5-1.10.4-hfa1e0ec_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libtiff-4.0.10-hcb84e12_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/ncurses-6.1-h0a44026_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/fitsverify-4.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libedit-3.1.20181209-hb402a30_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libxml2-2.9.9-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/readline-7.0-h1de35cc_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/libxslt-1.1.33-h33a18ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/sqlite-3.28.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/unixodbc-2.3.7-h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/python-3.6.8-haf84260_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/atomicwrites-1.3.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/attrs-19.1.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/certifi-2019.6.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/chardet-3.0.4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/cloudpickle-1.1.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/dask-core-1.2.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/decorator-4.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/filelock-3.0.12-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/idna-2.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/joblib-0.13.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/kiwisolver-1.1.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/lxml-4.3.3-py36hef8c89e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/markupsafe-1.1.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/more-itertools-7.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/mpmath-1.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/olefile-0.46-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/parsley-1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/parso-0.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pickleshare-0.7.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/psutil-5.6.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/ptyprocess-0.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/py-1.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pycparser-2.19-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/pymssql-2.1.3-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pyparsing-2.4.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pysocks-1.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pytz-2019.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pyyaml-5.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/free/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/six-1.12.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/soupsieve-1.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/tornado-6.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/verhawk-0.0.3.dev0+g4f4a60c-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/zipp-0.5.1-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/beautifulsoup4-4.7.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/cffi-1.12.3-py36hb5b8e2f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/cytoolz-0.9.0.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/importlib_metadata-0.17-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/jedi-0.13.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/packaging-19.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pexpect-4.7.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pillow-6.0.0-py36hb68e598_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/python-dateutil-2.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/setuptools-41.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/cryptography-2.7-py36ha12b0ac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/cython-0.29.10-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/jinja2-2.10.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/networkx-2.3-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pluggy-0.12.0-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/noarch/pygments-2.4.2-py_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/wheel-0.33.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pip-19.1.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/prompt_toolkit-2.0.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pyopenssl-19.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-4.6.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/ipython-7.5.0-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-openfiles-0.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-remotedata-0.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/urllib3-1.24.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/requests-2.22.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/asdf-2.4.0.dev.dev58+g96f5e34-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/h5py-2.9.0-py36h3134771_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/imageio-2.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/jplephem-2.9.dev1+g48c99ce-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/matplotlib-3.1.0-py36h54f8f79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/mkl-service-2.0.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/mkl_fft-1.0.12-py36h5e564d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/mkl_random-1.0.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/numpy-1.16.4-py36hacdab7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/numpy-base-1.16.4-py36h6575580_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pandas-0.24.2-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-arraydiff-0.3-py36h39e3cac_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-doctestplus-0.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pywavelets-1.0.3-py36h1d22016_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/scipy-1.2.1-py36h1410ff5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/stsci.imagestats-1.6.2.dev0+gd7fc9fe-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddca-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/pytest-astropy-0.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/scikit-image-0.15.0-py36h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/main/osx-64/scikit-learn-0.21.2-py36h27c97d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/astropy-4.0.0.dev13236+g15ce42165-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/crds-7.3.3.dev18+g750e8f44-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/drizzle-1.13.dev0+ge4c567a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/gwcs-0.10.1a.dev37+ge1e33fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/photutils-0.6.dev339+g24732069-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/spherical-geometry-1.2.10.dev5+gf3c016b-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/stsci.tools-3.5.2rc1.dev6+gb926e11-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/stsci.image-2.3.1.dev0+g642799f-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.13.8/astroconda-dev/osx-64/jwst-0.13.8.dev0+gebd467ed-py36_5.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.14.0/README.md b/jwstdp/0.14.0/README.md new file mode 100644 index 0000000..1f2b84e --- /dev/null +++ b/jwstdp/0.14.0/README.md @@ -0,0 +1,64 @@ +The delivery process and artifacts have changed with 0.14.0. Please read below for the new installation procedure. + +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, see 'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.14.0 --file https://ssb.stsci.edu/releases/jwstdp/0.14.0/conda_env_dump_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.14.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.14.0/reqs_stable-deps.txt +``` + +## Macos +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.14.0 --file https://ssb.stsci.edu/releases/jwstdp/0.14.0/conda_env_dump_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.14.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.14.0/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.7.10-Linux-x86_64.sh +$ bash Miniconda3-4.7.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.14.0/conda_env_dump_macos-stable-deps.txt b/jwstdp/0.14.0/conda_env_dump_macos-stable-deps.txt new file mode 100644 index 0000000..e5b4c36 --- /dev/null +++ b/jwstdp/0.14.0/conda_env_dump_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2019.10.16-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1d-h1de35cc_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.1-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-7.0-h1de35cc_5.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.30.0-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.4-h359304d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.9.11-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-41.4.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.33.6-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pip-19.3.1-py37_0.tar.bz2 diff --git a/jwstdp/0.14.0/conda_env_dump_stable-deps.txt b/jwstdp/0.14.0/conda_env_dump_stable-deps.txt new file mode 100644 index 0000000..9d6d734 --- /dev/null +++ b/jwstdp/0.14.0/conda_env_dump_stable-deps.txt @@ -0,0 +1,22 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2019.10.16-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.1-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1d-h7b6447c_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-7.0-h7b6447c_5.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.30.0-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.4-h265db76_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2019.9.11-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-41.4.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.33.6-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pip-19.3.1-py37_0.tar.bz2 diff --git a/jwstdp/0.14.0/reqs_macos-stable-deps.txt b/jwstdp/0.14.0/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..698404d --- /dev/null +++ b/jwstdp/0.14.0/reqs_macos-stable-deps.txt @@ -0,0 +1,47 @@ +asdf==2.4.2 +astropy @ git+https://github.com/astropy/astropy@5f7c192 +atomicwrites==1.3.0 +attrs==19.1.0 +certifi==2019.9.11 +chardet==3.0.4 +ci-watson==0.4 +codecov==2.0.15 +coverage==4.5.4 +crds @ git+https://github.com/spacetelescope/crds@7.4.1.2 +Cython==0.29.13 +drizzle==1.13.1 +filelock==3.0.12 +gwcs @ git+https://github.com/spacetelescope/gwcs@3e2bc10 +idna==2.8 +importlib-metadata==0.23 +jsonschema==3.0.2 +jwst @ git+https://github.com/spacetelescope/jwst@0.14.0 +lxml==4.4.1 +more-itertools==7.2.0 +numpy==1.17.2 +packaging==19.2 +Parsley==1.3 +photutils==0.7 +pluggy==0.13.0 +psutil==5.6.3 +py==1.8.0 +pyparsing==2.4.2 +pyrsistent==0.15.4 +pytest==5.1.3 +pytest-cov==2.7.1 +pytest-doctestplus==0.4.0 +pytest-openfiles==0.4.0 +PyYAML==5.1.2 +requests==2.22.0 +requests-mock==1.7.0 +scipy==1.3.1 +semantic-version==2.6.0 +six==1.12.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.5.1 +urllib3==1.25.6 +wcwidth==0.1.7 +zipp==0.6.0 diff --git a/jwstdp/0.14.0/reqs_stable-deps.txt b/jwstdp/0.14.0/reqs_stable-deps.txt new file mode 100644 index 0000000..4ffe3d0 --- /dev/null +++ b/jwstdp/0.14.0/reqs_stable-deps.txt @@ -0,0 +1,53 @@ +apipkg==1.5 +asdf==2.4.2 +astropy @ git+https://github.com/astropy/astropy@5f7c192 +atomicwrites==1.3.0 +attrs==19.1.0 +certifi==2019.9.11 +chardet==3.0.4 +ci-watson==0.4 +codecov==2.0.15 +coverage==4.5.4 +crds @ git+https://github.com/spacetelescope/crds@7.4.1.2 +Cython==0.29.13 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs @ git+https://github.com/spacetelescope/gwcs@3e2bc10 +idna==2.8 +importlib-metadata==0.23 +jplephem==2.9 +jsonschema==3.0.2 +jwst @ git+https://github.com/spacetelescope/jwst@0.14.0 +lxml==4.4.1 +more-itertools==7.2.0 +numpy==1.17.2 +packaging==19.2 +Parsley==1.3 +photutils==0.7 +pluggy==0.13.0 +psutil==5.6.3 +py==1.8.0 +pymssql==2.1.4 +pyparsing==2.4.2 +pyrsistent==0.15.4 +pytest==5.1.3 +pytest-cov==2.7.1 +pytest-doctestplus==0.4.0 +pytest-forked==1.1.3 +pytest-openfiles==0.4.0 +pytest-xdist==1.30.0 +PyYAML==5.1.2 +requests==2.22.0 +requests-mock==1.7.0 +scipy==1.3.1 +semantic-version==2.6.0 +six==1.12.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.5.1 +urllib3==1.25.6 +wcwidth==0.1.7 +zipp==0.6.0 diff --git a/jwstdp/0.14.1/README.md b/jwstdp/0.14.1/README.md new file mode 100644 index 0000000..a3123d6 --- /dev/null +++ b/jwstdp/0.14.1/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.14.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.14.1/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.14.1 +``` + +3) Install the pipeline software packages on top using `pip`: + ``` + $ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.14.1/reqs_stable-deps.txt + ``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.14.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.14.1/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.14.1 +``` + +3) Install the pipeline software packages on top using `pip`: + ``` + $ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.14.1/reqs_macos-stable-deps.txt + ``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.14.1/conda_python_macos-stable-deps.txt b/jwstdp/0.14.1/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..90c3961 --- /dev/null +++ b/jwstdp/0.14.1/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2019.10.16-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1d-h1de35cc_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.1-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-7.0-h1de35cc_5.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.30.1-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.4-h359304d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.9.11-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-41.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.33.6-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pip-19.3.1-py37_0.tar.bz2 diff --git a/jwstdp/0.14.1/conda_python_stable-deps.txt b/jwstdp/0.14.1/conda_python_stable-deps.txt new file mode 100644 index 0000000..6dfde7f --- /dev/null +++ b/jwstdp/0.14.1/conda_python_stable-deps.txt @@ -0,0 +1,22 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2019.10.16-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.1-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1d-h7b6447c_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-7.0-h7b6447c_5.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.30.1-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.4-h265db76_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2019.9.11-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-41.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.33.6-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pip-19.3.1-py37_0.tar.bz2 diff --git a/jwstdp/0.14.1/reqs_macos-stable-deps.txt b/jwstdp/0.14.1/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..6c0608a --- /dev/null +++ b/jwstdp/0.14.1/reqs_macos-stable-deps.txt @@ -0,0 +1,47 @@ +asdf @ git+https://github.com/spacetelescope/asdf@1b41c6d04f65794 +astropy @ git+https://github.com/astropy/astropy@df61bbc22ed2fd5c8 +atomicwrites==1.3.0 +attrs==19.1.0 +certifi==2019.9.11 +chardet==3.0.4 +ci-watson==0.4 +codecov==2.0.15 +coverage==4.5.4 +crds==7.4.1.2 +Cython==0.29.13 +drizzle==1.13.1 +filelock==3.0.12 +gwcs @ git+https://github.com/spacetelescope/gwcs@ace1c2c30a65826 +idna==2.8 +importlib-metadata==0.23 +jsonschema==3.0.2 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.14.1 +lxml==4.4.1 +more-itertools==7.2.0 +numpy==1.17.2 +packaging==19.2 +Parsley==1.3 +photutils==0.7 +pluggy==0.13.0 +psutil==5.6.3 +py==1.8.0 +pyparsing==2.4.2 +pyrsistent==0.15.4 +pytest==5.1.3 +pytest-cov==2.7.1 +pytest-doctestplus==0.4.0 +pytest-openfiles==0.4.0 +PyYAML==5.1.2 +requests==2.22.0 +requests-mock==1.7.0 +scipy==1.3.1 +semantic-version==2.6.0 +six==1.12.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.5.1 +urllib3==1.25.6 +wcwidth==0.1.7 +zipp==0.6.0 diff --git a/jwstdp/0.14.1/reqs_stable-deps.txt b/jwstdp/0.14.1/reqs_stable-deps.txt new file mode 100644 index 0000000..6fc42ca --- /dev/null +++ b/jwstdp/0.14.1/reqs_stable-deps.txt @@ -0,0 +1,53 @@ +apipkg==1.5 +asdf @ git+https://github.com/spacetelescope/asdf@1b41c6d04f65794 +astropy @ git+https://github.com/astropy/astropy@df61bbc22ed2fd5c8 +atomicwrites==1.3.0 +attrs==19.1.0 +certifi==2019.9.11 +chardet==3.0.4 +ci-watson==0.4 +codecov==2.0.15 +coverage==4.5.4 +crds==7.4.1.2 +Cython==0.29.13 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs @ git+https://github.com/spacetelescope/gwcs@ace1c2c30a65826 +idna==2.8 +importlib-metadata==0.23 +jplephem==2.9 +jsonschema==3.0.2 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.14.1 +lxml==4.4.1 +more-itertools==7.2.0 +numpy==1.17.2 +packaging==19.2 +Parsley==1.3 +photutils==0.7 +pluggy==0.13.0 +psutil==5.6.3 +py==1.8.0 +pymssql==2.1.4 +pyparsing==2.4.2 +pyrsistent==0.15.4 +pytest==5.1.3 +pytest-cov==2.7.1 +pytest-doctestplus==0.4.0 +pytest-forked==1.1.3 +pytest-openfiles==0.4.0 +pytest-xdist==1.30.0 +PyYAML==5.1.2 +requests==2.22.0 +requests-mock==1.7.0 +scipy==1.3.1 +semantic-version==2.6.0 +six==1.12.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.5.1 +urllib3==1.25.6 +wcwidth==0.1.7 +zipp==0.6.0 diff --git a/jwstdp/0.14.2/README.md b/jwstdp/0.14.2/README.md new file mode 100644 index 0000000..3b45a5e --- /dev/null +++ b/jwstdp/0.14.2/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.14.2 --file +https://ssb.stsci.edu/releases/jwstdp/0.14.2/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.14.2 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.14.2/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.14.2 --file +https://ssb.stsci.edu/releases/jwstdp/0.14.2/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.14.2 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.14.2/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.14.2/conda_python_macos-stable-deps.txt b/jwstdp/0.14.2/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..90c3961 --- /dev/null +++ b/jwstdp/0.14.2/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2019.10.16-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1d-h1de35cc_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.1-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-7.0-h1de35cc_5.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.30.1-ha441bb4_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.4-h359304d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.9.11-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-41.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.33.6-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/pip-19.3.1-py37_0.tar.bz2 diff --git a/jwstdp/0.14.2/conda_python_stable-deps.txt b/jwstdp/0.14.2/conda_python_stable-deps.txt new file mode 100644 index 0000000..6dfde7f --- /dev/null +++ b/jwstdp/0.14.2/conda_python_stable-deps.txt @@ -0,0 +1,22 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2019.10.16-0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.1-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1d-h7b6447c_3.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-7.0-h7b6447c_5.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.30.1-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.4-h265db76_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2019.9.11-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-41.6.0-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.33.6-py37_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/pip-19.3.1-py37_0.tar.bz2 diff --git a/jwstdp/0.14.2/reqs_macos-stable-deps.txt b/jwstdp/0.14.2/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..95702e0 --- /dev/null +++ b/jwstdp/0.14.2/reqs_macos-stable-deps.txt @@ -0,0 +1,47 @@ +asdf @ git+https://github.com/spacetelescope/asdf@c1373db953c77b625415f +astropy @ git+https://github.com/astropy/astropy@df61bbc22ed2fd5c8 +atomicwrites==1.3.0 +attrs==19.1.0 +certifi==2019.9.11 +chardet==3.0.4 +ci-watson==0.4 +codecov==2.0.15 +coverage==4.5.4 +crds==7.4.1.2 +Cython==0.29.13 +drizzle==1.13.1 +filelock==3.0.12 +gwcs @ git+https://github.com/spacetelescope/gwcs@ace1c2c30a65826 +idna==2.8 +importlib-metadata==0.23 +jsonschema==3.0.2 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.14.2 +lxml==4.4.1 +more-itertools==7.2.0 +numpy==1.17.2 +packaging==19.2 +Parsley==1.3 +photutils==0.7 +pluggy==0.13.0 +psutil==5.6.3 +py==1.8.0 +pyparsing==2.4.2 +pyrsistent==0.15.4 +pytest==5.1.3 +pytest-cov==2.7.1 +pytest-doctestplus==0.4.0 +pytest-openfiles==0.4.0 +PyYAML==5.1.2 +requests==2.22.0 +requests-mock==1.7.0 +scipy==1.3.1 +semantic-version==2.8.2 +six==1.12.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.5.3 +urllib3==1.25.6 +wcwidth==0.1.7 +zipp==0.6.0 diff --git a/jwstdp/0.14.2/reqs_stable-deps.txt b/jwstdp/0.14.2/reqs_stable-deps.txt new file mode 100644 index 0000000..136853e --- /dev/null +++ b/jwstdp/0.14.2/reqs_stable-deps.txt @@ -0,0 +1,53 @@ +apipkg==1.5 +asdf @ git+https://github.com/spacetelescope/asdf@c1373db953c77b625415f +astropy @ git+https://github.com/astropy/astropy@df61bbc22ed2fd5c8 +atomicwrites==1.3.0 +attrs==19.1.0 +certifi==2019.9.11 +chardet==3.0.4 +ci-watson==0.4 +codecov==2.0.15 +coverage==4.5.4 +crds==7.4.1.2 +Cython==0.29.13 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs @ git+https://github.com/spacetelescope/gwcs@ace1c2c30a65826 +idna==2.8 +importlib-metadata==0.23 +jplephem==2.9 +jsonschema==3.0.2 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.14.2 +lxml==4.4.1 +more-itertools==7.2.0 +numpy==1.17.2 +packaging==19.2 +Parsley==1.3 +photutils==0.7 +pluggy==0.13.0 +psutil==5.6.3 +py==1.8.0 +pymssql==2.1.4 +pyparsing==2.4.2 +pyrsistent==0.15.4 +pytest==5.1.3 +pytest-cov==2.7.1 +pytest-doctestplus==0.4.0 +pytest-forked==1.1.3 +pytest-openfiles==0.4.0 +pytest-xdist==1.30.0 +PyYAML==5.1.2 +requests==2.22.0 +requests-mock==1.7.0 +scipy==1.3.1 +semantic-version==2.8.2 +six==1.12.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.5.3 +urllib3==1.25.6 +wcwidth==0.1.7 +zipp==0.6.0 diff --git a/jwstdp/0.15.0/README.md b/jwstdp/0.15.0/README.md new file mode 100644 index 0000000..043b209 --- /dev/null +++ b/jwstdp/0.15.0/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.15.0 --file +https://ssb.stsci.edu/releases/jwstdp/0.15.0/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.15.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.15.0/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.15.0 --file +https://ssb.stsci.edu/releases/jwstdp/0.15.0/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.15.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.15.0/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.15.0/conda_python_macos-stable-deps.txt b/jwstdp/0.15.0/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..f7b0e04 --- /dev/null +++ b/jwstdp/0.15.0/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.1.1-0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1d-h1de35cc_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-7.0-h1de35cc_5.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.31.1-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.6-h359304d_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.11.28-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-45.2.0-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.34.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.0.2-py37_1.conda diff --git a/jwstdp/0.15.0/conda_python_stable-deps.txt b/jwstdp/0.15.0/conda_python_stable-deps.txt new file mode 100644 index 0000000..163e3ac --- /dev/null +++ b/jwstdp/0.15.0/conda_python_stable-deps.txt @@ -0,0 +1,23 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.1.1-0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1d-h7b6447c_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-7.0-h7b6447c_5.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.31.1-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.6-h0371630_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2019.11.28-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-45.2.0-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.34.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.0.2-py37_1.conda diff --git a/jwstdp/0.15.0/reqs_macos-stable-deps.txt b/jwstdp/0.15.0/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..cbf6440 --- /dev/null +++ b/jwstdp/0.15.0/reqs_macos-stable-deps.txt @@ -0,0 +1,46 @@ +asdf==2.5.1 +astropy==4.0 +attrs==19.3.0 +certifi==2019.11.28 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.0.16 +coverage==5.0.3 +crds==7.4.1.3 +Cython==0.29.15 +drizzle==1.13.1 +filelock==3.0.12 +gwcs==0.12.0 +idna==2.9 +importlib-metadata==1.5.0 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.15.0 +lxml==4.5.0 +more-itertools==8.2.0 +numpy==1.18.1 +packaging==20.1 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.0 +py==1.8.1 +pyparsing==2.4.6 +pyrsistent==0.15.7 +pytest==5.3.5 +pytest-cov==2.8.1 +pytest-doctestplus==0.5.0 +pytest-openfiles==0.4.0 +PyYAML==5.3 +requests==2.23.0 +requests-mock==1.7.0 +scipy==1.4.1 +semantic-version==2.8.4 +six==1.14.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.5.3 +urllib3==1.25.8 +wcwidth==0.1.8 +zipp==3.0.0 diff --git a/jwstdp/0.15.0/reqs_stable-deps.txt b/jwstdp/0.15.0/reqs_stable-deps.txt new file mode 100644 index 0000000..e6713f1 --- /dev/null +++ b/jwstdp/0.15.0/reqs_stable-deps.txt @@ -0,0 +1,52 @@ +apipkg==1.5 +asdf==2.5.1 +astropy==4.0 +attrs==19.3.0 +certifi==2019.11.28 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.0.16 +coverage==5.0.3 +crds==7.4.1.3 +Cython==0.29.15 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs==0.12.0 +idna==2.9 +importlib-metadata==1.5.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.15.0 +lxml==4.5.0 +more-itertools==8.2.0 +numpy==1.18.1 +packaging==20.1 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.0 +py==1.8.1 +pymssql==2.1.4 +pyparsing==2.4.6 +pyrsistent==0.15.7 +pytest==5.3.5 +pytest-cov==2.8.1 +pytest-doctestplus==0.5.0 +pytest-forked==1.1.3 +pytest-openfiles==0.4.0 +pytest-xdist==1.31.0 +PyYAML==5.3 +requests==2.23.0 +requests-mock==1.7.0 +scipy==1.4.1 +semantic-version==2.8.4 +six==1.14.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.5.3 +urllib3==1.25.8 +wcwidth==0.1.8 +zipp==3.0.0 diff --git a/jwstdp/0.15.1/README.md b/jwstdp/0.15.1/README.md new file mode 100644 index 0000000..0567c68 --- /dev/null +++ b/jwstdp/0.15.1/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.15.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.15.1/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.15.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.15.1/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.15.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.15.1/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.15.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.15.1/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.15.1/conda_python_macos-stable-deps.txt b/jwstdp/0.15.1/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..f7b0e04 --- /dev/null +++ b/jwstdp/0.15.1/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.1.1-0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.4-h1de35cc_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1d-h1de35cc_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h475c297_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-7.0-h1de35cc_5.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.31.1-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.6-h359304d_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2019.11.28-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-45.2.0-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.34.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.0.2-py37_1.conda diff --git a/jwstdp/0.15.1/conda_python_stable-deps.txt b/jwstdp/0.15.1/conda_python_stable-deps.txt new file mode 100644 index 0000000..537c069 --- /dev/null +++ b/jwstdp/0.15.1/conda_python_stable-deps.txt @@ -0,0 +1,23 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.1.1-0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1d-h7b6447c_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.4-h14c3975_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-7.0-h7b6447c_5.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.31.1-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.6-h0371630_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2019.11.28-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-46.0.0-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.34.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.0.2-py37_1.conda diff --git a/jwstdp/0.15.1/reqs_macos-stable-deps.txt b/jwstdp/0.15.1/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..900a0b9 --- /dev/null +++ b/jwstdp/0.15.1/reqs_macos-stable-deps.txt @@ -0,0 +1,46 @@ +asdf==2.5.1 +astropy==4.0 +attrs==19.3.0 +certifi==2019.11.28 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.0.16 +coverage==5.0.3 +crds==7.4.1.3 +Cython==0.29.15 +drizzle==1.13.1 +filelock==3.0.12 +gwcs==0.12.0 +idna==2.9 +importlib-metadata==1.5.0 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.15.1 +lxml==4.5.0 +more-itertools==8.2.0 +numpy==1.18.1 +packaging==20.1 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.0 +py==1.8.1 +pyparsing==2.4.6 +pyrsistent==0.15.7 +pytest==5.3.5 +pytest-cov==2.8.1 +pytest-doctestplus==0.5.0 +pytest-openfiles==0.4.0 +PyYAML==5.3 +requests==2.23.0 +requests-mock==1.7.0 +scipy==1.4.1 +semantic-version==2.8.4 +six==1.14.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.5.3 +urllib3==1.25.8 +wcwidth==0.1.8 +zipp==3.0.0 diff --git a/jwstdp/0.15.1/reqs_stable-deps.txt b/jwstdp/0.15.1/reqs_stable-deps.txt new file mode 100644 index 0000000..4bfef94 --- /dev/null +++ b/jwstdp/0.15.1/reqs_stable-deps.txt @@ -0,0 +1,52 @@ +apipkg==1.5 +asdf==2.5.1 +astropy==4.0 +attrs==19.3.0 +certifi==2019.11.28 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.0.16 +coverage==5.0.3 +crds==7.4.1.3 +Cython==0.29.15 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs==0.12.0 +idna==2.9 +importlib-metadata==1.5.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.15.1 +lxml==4.5.0 +more-itertools==8.2.0 +numpy==1.18.1 +packaging==20.1 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.0 +py==1.8.1 +pymssql==2.1.4 +pyparsing==2.4.6 +pyrsistent==0.15.7 +pytest==5.3.5 +pytest-cov==2.8.1 +pytest-doctestplus==0.5.0 +pytest-forked==1.1.3 +pytest-openfiles==0.4.0 +pytest-xdist==1.31.0 +PyYAML==5.3 +requests==2.23.0 +requests-mock==1.7.0 +scipy==1.4.1 +semantic-version==2.8.4 +six==1.14.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.5.3 +urllib3==1.25.8 +wcwidth==0.1.8 +zipp==3.0.0 diff --git a/jwstdp/0.16.0/README.md b/jwstdp/0.16.0/README.md new file mode 100644 index 0000000..8bd3fc4 --- /dev/null +++ b/jwstdp/0.16.0/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.16.0 --file +https://ssb.stsci.edu/releases/jwstdp/0.16.0/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.16.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.16.0/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.16.0 --file +https://ssb.stsci.edu/releases/jwstdp/0.16.0/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.16.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.16.0/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.16.0/conda_python_macos-stable-deps.txt b/jwstdp/0.16.0/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..4397f7f --- /dev/null +++ b/jwstdp/0.16.0/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.1.1-0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxxabi-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-4.0.1-hcfea43d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1g-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.2.1-h0a44026_6.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.31.1-h5c1f38d_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.7-hc70fcce_0_cpython.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.4.5.1-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-46.1.3-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.34.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.0.2-py37_1.conda diff --git a/jwstdp/0.16.0/conda_python_stable-deps.txt b/jwstdp/0.16.0/conda_python_stable-deps.txt new file mode 100644 index 0000000..02384b0 --- /dev/null +++ b/jwstdp/0.16.0/conda_python_stable-deps.txt @@ -0,0 +1,23 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.1.1-0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.2.1-hd88cf55_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1g-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.31.1-h62c20be_1.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.7-hcf32534_0_cpython.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.4.5.1-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-46.1.3-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.34.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.0.2-py37_1.conda diff --git a/jwstdp/0.16.0/reqs_macos-stable-deps.txt b/jwstdp/0.16.0/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..ebc2297 --- /dev/null +++ b/jwstdp/0.16.0/reqs_macos-stable-deps.txt @@ -0,0 +1,46 @@ +asdf==2.5.2 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.4.5.1 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.0.22 +coverage==5.1 +crds==7.4.1.3 +Cython==0.29.16 +drizzle==1.13.1 +filelock==3.0.12 +gwcs==0.13.0 +idna==2.9 +importlib-metadata==1.6.0 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.16.0 +lxml==4.5.0 +more-itertools==8.2.0 +numpy==1.18.2 +packaging==20.3 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.0 +py==1.8.1 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.3.5 +pytest-cov==2.8.1 +pytest-doctestplus==0.5.0 +pytest-openfiles==0.5.0 +PyYAML==5.3.1 +requests==2.23.0 +requests-mock==1.7.0 +scipy==1.4.1 +semantic-version==2.8.4 +six==1.14.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.6.3 +urllib3==1.25.9 +wcwidth==0.1.9 +zipp==3.1.0 diff --git a/jwstdp/0.16.0/reqs_stable-deps.txt b/jwstdp/0.16.0/reqs_stable-deps.txt new file mode 100644 index 0000000..ed458ad --- /dev/null +++ b/jwstdp/0.16.0/reqs_stable-deps.txt @@ -0,0 +1,52 @@ +apipkg==1.5 +asdf==2.5.2 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.4.5.1 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.0.22 +coverage==5.1 +crds==7.4.1.3 +Cython==0.29.16 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs==0.13.0 +idna==2.9 +importlib-metadata==1.6.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.16.0 +lxml==4.5.0 +more-itertools==8.2.0 +numpy==1.18.2 +packaging==20.3 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.0 +py==1.8.1 +pymssql==2.1.4 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.3.5 +pytest-cov==2.8.1 +pytest-doctestplus==0.5.0 +pytest-forked==1.1.3 +pytest-openfiles==0.5.0 +pytest-xdist==1.32.0 +PyYAML==5.3.1 +requests==2.23.0 +requests-mock==1.7.0 +scipy==1.4.1 +semantic-version==2.8.4 +six==1.14.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.6.3 +urllib3==1.25.9 +wcwidth==0.1.9 +zipp==3.1.0 diff --git a/jwstdp/0.16.1/README.md b/jwstdp/0.16.1/README.md new file mode 100644 index 0000000..812a4a5 --- /dev/null +++ b/jwstdp/0.16.1/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.16.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.16.1/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.16.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.16.1/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.16.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.16.1/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.16.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.16.1/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.16.1/conda_python_macos-stable-deps.txt b/jwstdp/0.16.1/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..c7039d4 --- /dev/null +++ b/jwstdp/0.16.1/conda_python_macos-stable-deps.txt @@ -0,0 +1,20 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.1.1-0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1g-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.8-ha441bb4_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20181209-hb402a30_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.31.1-h5c1f38d_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.7-hf48f09d_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.4.5.1-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-46.4.0-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.34.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.0.2-py37_3.conda diff --git a/jwstdp/0.16.1/conda_python_stable-deps.txt b/jwstdp/0.16.1/conda_python_stable-deps.txt new file mode 100644 index 0000000..4ec4817 --- /dev/null +++ b/jwstdp/0.16.1/conda_python_stable-deps.txt @@ -0,0 +1,23 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.1.1-0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1g-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20181209-hc058e9b_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.8-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.31.1-h62c20be_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.7-hcff3b4d_5.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.4.5.1-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-46.4.0-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.34.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.0.2-py37_3.conda diff --git a/jwstdp/0.16.1/reqs_macos-stable-deps.txt b/jwstdp/0.16.1/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..51e6058 --- /dev/null +++ b/jwstdp/0.16.1/reqs_macos-stable-deps.txt @@ -0,0 +1,46 @@ +asdf==2.5.2 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.4.5.1 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.0.22 +coverage==5.1 +crds==7.4.1.3 +Cython==0.29.16 +drizzle==1.13.1 +filelock==3.0.12 +gwcs==0.13.0 +idna==2.9 +importlib-metadata==1.6.0 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.16.1 +lxml==4.5.0 +more-itertools==8.2.0 +numpy==1.18.2 +packaging==20.3 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.0 +py==1.8.1 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.3.5 +pytest-cov==2.8.1 +pytest-doctestplus==0.5.0 +pytest-openfiles==0.5.0 +PyYAML==5.3.1 +requests==2.23.0 +requests-mock==1.7.0 +scipy==1.4.1 +semantic-version==2.8.4 +six==1.14.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.6.4 +urllib3==1.25.9 +wcwidth==0.1.9 +zipp==3.1.0 diff --git a/jwstdp/0.16.1/reqs_stable-deps.txt b/jwstdp/0.16.1/reqs_stable-deps.txt new file mode 100644 index 0000000..5ff0c96 --- /dev/null +++ b/jwstdp/0.16.1/reqs_stable-deps.txt @@ -0,0 +1,52 @@ +apipkg==1.5 +asdf==2.5.2 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.4.5.1 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.0.22 +coverage==5.1 +crds==7.4.1.3 +Cython==0.29.16 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs==0.13.0 +idna==2.9 +importlib-metadata==1.6.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.16.1 +lxml==4.5.0 +more-itertools==8.2.0 +numpy==1.18.2 +packaging==20.3 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.0 +py==1.8.1 +pymssql==2.1.4 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.3.5 +pytest-cov==2.8.1 +pytest-doctestplus==0.5.0 +pytest-forked==1.1.3 +pytest-openfiles==0.5.0 +pytest-xdist==1.32.0 +PyYAML==5.3.1 +requests==2.23.0 +requests-mock==1.7.0 +scipy==1.4.1 +semantic-version==2.8.4 +six==1.14.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.6.4 +urllib3==1.25.9 +wcwidth==0.1.9 +zipp==3.1.0 diff --git a/jwstdp/0.16.2/README.md b/jwstdp/0.16.2/README.md new file mode 100644 index 0000000..9b65481 --- /dev/null +++ b/jwstdp/0.16.2/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.16.2 --file +https://ssb.stsci.edu/releases/jwstdp/0.16.2/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.16.2 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.16.2/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.16.2 --file +https://ssb.stsci.edu/releases/jwstdp/0.16.2/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.16.2 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.16.2/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.16.2/conda_python_macos-stable-deps.txt b/jwstdp/0.16.2/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..d4be60d --- /dev/null +++ b/jwstdp/0.16.2/conda_python_macos-stable-deps.txt @@ -0,0 +1,20 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.1.1-0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1g-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20191231-haf1e3a3_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.32.2-hffcf06c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.7.7-hf48f09d_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.4.5.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-47.3.0-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/wheel-0.34.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.1.1-py37_1.conda diff --git a/jwstdp/0.16.2/conda_python_stable-deps.txt b/jwstdp/0.16.2/conda_python_stable-deps.txt new file mode 100644 index 0000000..9aa62ab --- /dev/null +++ b/jwstdp/0.16.2/conda_python_stable-deps.txt @@ -0,0 +1,23 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.1.1-0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1g-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20191231-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.32.2-h62c20be_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.7.7-hcff3b4d_5.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.4.5.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-47.3.0-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/wheel-0.34.2-py37_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.1.1-py37_1.conda diff --git a/jwstdp/0.16.2/reqs_macos-stable-deps.txt b/jwstdp/0.16.2/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..cabe052 --- /dev/null +++ b/jwstdp/0.16.2/reqs_macos-stable-deps.txt @@ -0,0 +1,32 @@ +asdf==2.6.0 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.4.5.2 +chardet==3.0.4 +crds==7.5.0.0 +Cython==0.29.20 +drizzle==1.13.1 +filelock==3.0.12 +gwcs==0.13.0 +idna==2.9 +importlib-metadata==1.6.1 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.16.2 +lxml==4.5.1 +numpy==1.19.0 +Parsley==1.3 +photutils==0.7.2 +pyparsing==2.4.7 +pyrsistent==0.16.0 +PyYAML==5.3.1 +requests==2.24.0 +scipy==1.5.0 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.6.4 +urllib3==1.25.9 +zipp==3.1.0 diff --git a/jwstdp/0.16.2/reqs_stable-deps.txt b/jwstdp/0.16.2/reqs_stable-deps.txt new file mode 100644 index 0000000..7aa1179 --- /dev/null +++ b/jwstdp/0.16.2/reqs_stable-deps.txt @@ -0,0 +1,52 @@ +apipkg==1.5 +asdf==2.6.0 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.4.5.2 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.7 +coverage==5.1 +crds==7.5.0.0 +Cython==0.29.20 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs==0.13.0 +idna==2.9 +importlib-metadata==1.6.1 +jplephem==2.9 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.16.2 +lxml==4.5.1 +more-itertools==8.4.0 +numpy==1.19.0 +packaging==20.4 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.0 +py==1.8.2 +pymssql==2.1.4 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.4.3 +pytest-cov==2.10.0 +pytest-doctestplus==0.7.0 +pytest-forked==1.1.3 +pytest-openfiles==0.5.0 +pytest-xdist==1.32.0 +PyYAML==5.3.1 +requests==2.24.0 +requests-mock==1.8.0 +scipy==1.5.0 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.6.4 +urllib3==1.25.9 +wcwidth==0.2.4 +zipp==3.1.0 diff --git a/jwstdp/0.17.0/README.md b/jwstdp/0.17.0/README.md new file mode 100644 index 0000000..438b40d --- /dev/null +++ b/jwstdp/0.17.0/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.17.0 --file +https://ssb.stsci.edu/releases/jwstdp/0.17.0/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.17.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.17.0/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.17.0 --file +https://ssb.stsci.edu/releases/jwstdp/0.17.0/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.17.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.17.0/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.17.0/conda_python_macos-stable-deps.txt b/jwstdp/0.17.0/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..81cf99e --- /dev/null +++ b/jwstdp/0.17.0/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.7.22-0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1g-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20191231-h1de35cc_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.33.0-hffcf06c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.5-h26836e1_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.6.20-py38_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.35.1-py_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-49.6.0-py38_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.2.2-py38_0.conda diff --git a/jwstdp/0.17.0/conda_python_stable-deps.txt b/jwstdp/0.17.0/conda_python_stable-deps.txt new file mode 100644 index 0000000..ba32a57 --- /dev/null +++ b/jwstdp/0.17.0/conda_python_stable-deps.txt @@ -0,0 +1,24 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.7.22-0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1g-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20191231-h14c3975_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.33.0-h62c20be_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.5-hcff3b4d_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.6.20-py38_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.35.1-py_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-49.6.0-py38_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.2.2-py38_0.conda diff --git a/jwstdp/0.17.0/reqs_macos-stable-deps.txt b/jwstdp/0.17.0/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..0b3ae8b --- /dev/null +++ b/jwstdp/0.17.0/reqs_macos-stable-deps.txt @@ -0,0 +1,50 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.6.20 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.8 +coverage==5.2.1 +crds==7.5.0.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs==0.14.0 +idna==2.10 +importlib-metadata==1.7.0 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.17.0 +lxml==4.5.2 +more-itertools==8.4.0 +numpy==1.19.1 +packaging==20.4 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.2 +py==1.9.0 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.4.3 +pytest-cov==2.10.0 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==1.34.0 +PyYAML==5.3.1 +requests==2.24.0 +requests-mock==1.8.0 +scipy==1.5.2 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.6.4 +urllib3==1.25.10 +wcwidth==0.2.5 +zipp==3.1.0 diff --git a/jwstdp/0.17.0/reqs_stable-deps.txt b/jwstdp/0.17.0/reqs_stable-deps.txt new file mode 100644 index 0000000..8f0ca08 --- /dev/null +++ b/jwstdp/0.17.0/reqs_stable-deps.txt @@ -0,0 +1,58 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.6.20 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.8 +coverage==5.2.1 +crds==7.5.0.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.3 +gwcs==0.14.0 +idna==2.10 +importlib-metadata==1.7.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.17.0 +lxml==4.5.2 +mccabe==0.6.1 +more-itertools==8.4.0 +numpy==1.19.1 +packaging==20.4 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.2 +py==1.9.0 +pycodestyle==2.6.0 +pyflakes==2.2.0 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.4.3 +pytest-cov==2.10.0 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-sugar==0.9.4 +pytest-xdist==1.34.0 +PyYAML==5.3.1 +requests==2.24.0 +requests-mock==1.8.0 +scipy==1.5.2 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +termcolor==1.1.0 +tweakwcs==0.6.4 +urllib3==1.25.10 +wcwidth==0.2.5 +zipp==3.1.0 diff --git a/jwstdp/0.17.1/README.md b/jwstdp/0.17.1/README.md new file mode 100644 index 0000000..88d40fc --- /dev/null +++ b/jwstdp/0.17.1/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.17.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.17.1/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.17.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.17.1/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.17.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.17.1/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.17.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.17.1/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.17.1/conda_python_macos-stable-deps.txt b/jwstdp/0.17.1/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..a71eb5b --- /dev/null +++ b/jwstdp/0.17.1/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.7.22-0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1g-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20191231-h1de35cc_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.33.0-hffcf06c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.5-h26836e1_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.6.20-py38_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.35.1-py_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-49.6.0-py38_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.2.2-py38_0.conda diff --git a/jwstdp/0.17.1/conda_python_stable-deps.txt b/jwstdp/0.17.1/conda_python_stable-deps.txt new file mode 100644 index 0000000..026d397 --- /dev/null +++ b/jwstdp/0.17.1/conda_python_stable-deps.txt @@ -0,0 +1,24 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.7.22-0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1g-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20191231-h14c3975_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.33.0-h62c20be_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.5-h7579374_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.6.20-py38_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.35.1-py_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-49.6.0-py38_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.2.2-py38_0.conda diff --git a/jwstdp/0.17.1/reqs_macos-stable-deps.txt b/jwstdp/0.17.1/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..1e00013 --- /dev/null +++ b/jwstdp/0.17.1/reqs_macos-stable-deps.txt @@ -0,0 +1,50 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.6.20 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.8 +coverage==5.2.1 +crds==7.6.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +gwcs==0.14.0 +idna==2.10 +importlib-metadata==1.7.0 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.17.1 +lxml==4.5.2 +more-itertools==8.4.0 +numpy==1.19.1 +packaging==20.4 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.2 +py==1.9.0 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.4.3 +pytest-cov==2.10.0 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==1.34.0 +PyYAML==5.3.1 +requests==2.24.0 +requests-mock==1.8.0 +scipy==1.5.2 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +tweakwcs==0.6.4 +urllib3==1.25.10 +wcwidth==0.2.5 +zipp==3.1.0 diff --git a/jwstdp/0.17.1/reqs_stable-deps.txt b/jwstdp/0.17.1/reqs_stable-deps.txt new file mode 100644 index 0000000..8bfeabc --- /dev/null +++ b/jwstdp/0.17.1/reqs_stable-deps.txt @@ -0,0 +1,58 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.0.1.post1 +attrs==19.3.0 +certifi==2020.6.20 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.8 +coverage==5.2.1 +crds==7.6.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.3 +gwcs==0.14.0 +idna==2.10 +importlib-metadata==1.7.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.17.1 +lxml==4.5.2 +mccabe==0.6.1 +more-itertools==8.4.0 +numpy==1.19.1 +packaging==20.4 +Parsley==1.3 +photutils==0.7.2 +pluggy==0.13.1 +psutil==5.7.2 +py==1.9.0 +pycodestyle==2.6.0 +pyflakes==2.2.0 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.16.0 +pytest==5.4.3 +pytest-cov==2.10.0 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-sugar==0.9.4 +pytest-xdist==1.34.0 +PyYAML==5.3.1 +requests==2.24.0 +requests-mock==1.8.0 +scipy==1.5.2 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.18 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +termcolor==1.1.0 +tweakwcs==0.6.4 +urllib3==1.25.10 +wcwidth==0.2.5 +zipp==3.1.0 diff --git a/jwstdp/0.18.0/README.md b/jwstdp/0.18.0/README.md new file mode 100644 index 0000000..f47ffcc --- /dev/null +++ b/jwstdp/0.18.0/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.18.0 --file +https://ssb.stsci.edu/releases/jwstdp/0.18.0/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.18.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.18.0/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.18.0 --file +https://ssb.stsci.edu/releases/jwstdp/0.18.0/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.18.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.18.0/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.18.0/conda_python_macos-stable-deps.txt b/jwstdp/0.18.0/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..35a6324 --- /dev/null +++ b/jwstdp/0.18.0/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.12.8-hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1i-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20191231-h1de35cc_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.33.0-hffcf06c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.5-h26836e1_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.12.5-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-51.0.0-py38hecd8cb5_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.3.3-py38hecd8cb5_0.conda diff --git a/jwstdp/0.18.0/conda_python_stable-deps.txt b/jwstdp/0.18.0/conda_python_stable-deps.txt new file mode 100644 index 0000000..73a1c75 --- /dev/null +++ b/jwstdp/0.18.0/conda_python_stable-deps.txt @@ -0,0 +1,24 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.12.8-h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1i-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20191231-h14c3975_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.33.0-h62c20be_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.5-h7579374_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.12.5-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-51.0.0-py38h06a4308_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.3.3-py38h06a4308_0.conda diff --git a/jwstdp/0.18.0/reqs_macos-stable-deps.txt b/jwstdp/0.18.0/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..6d055bc --- /dev/null +++ b/jwstdp/0.18.0/reqs_macos-stable-deps.txt @@ -0,0 +1,60 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.10 +coverage==5.3 +crds==10.2 +cycler==0.10.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.4 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.18.0 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.3 +mccabe==0.6.1 +numpy==1.19.4 +packaging==20.7 +Parsley==1.3 +photutils==1.0.1 +Pillow==8.0.1 +pluggy==0.13.1 +poppy==0.9.1 +psutil==5.7.3 +py==1.9.0 +pycodestyle==2.6.0 +pyerfa==1.7.1.1 +pyflakes==2.2.0 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.1.2 +pytest-cov==2.10.1 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.1.0 +python-dateutil==2.8.1 +PyYAML==5.3.1 +requests==2.25.0 +requests-mock==1.8.0 +scipy==1.5.4 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.0 +urllib3==1.26.2 diff --git a/jwstdp/0.18.0/reqs_stable-deps.txt b/jwstdp/0.18.0/reqs_stable-deps.txt new file mode 100644 index 0000000..d8c485e --- /dev/null +++ b/jwstdp/0.18.0/reqs_stable-deps.txt @@ -0,0 +1,64 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.10 +coverage==5.3 +crds==10.2 +cycler==0.10.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.4 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jplephem==2.9 +jsonschema==3.2.0 +jwst @ git+https://github.com/spacetelescope/jwst.git@0.18.0 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.3 +mccabe==0.6.1 +numpy==1.19.4 +packaging==20.7 +Parsley==1.3 +photutils==1.0.1 +Pillow==8.0.1 +pluggy==0.13.1 +poppy==0.9.1 +psutil==5.7.3 +py==1.9.0 +pycodestyle==2.6.0 +pyerfa==1.7.1.1 +pyflakes==2.2.0 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.1.2 +pytest-cov==2.10.1 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-sugar==0.9.4 +pytest-xdist==2.1.0 +python-dateutil==2.8.1 +PyYAML==5.3.1 +requests==2.25.0 +requests-mock==1.8.0 +scipy==1.5.4 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +termcolor==1.1.0 +toml==0.10.2 +tweakwcs==0.7.0 +urllib3==1.26.2 diff --git a/jwstdp/0.18.1/README.md b/jwstdp/0.18.1/README.md new file mode 100644 index 0000000..1ab20f3 --- /dev/null +++ b/jwstdp/0.18.1/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.18.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.18.1/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.18.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.18.1/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.18.1 --file +https://ssb.stsci.edu/releases/jwstdp/0.18.1/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.18.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.18.1/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.18.1/conda_python_macos-stable-deps.txt b/jwstdp/0.18.1/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..35a6324 --- /dev/null +++ b/jwstdp/0.18.1/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.12.8-hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1i-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20191231-h1de35cc_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.33.0-hffcf06c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.5-h26836e1_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.12.5-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-51.0.0-py38hecd8cb5_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.3.3-py38hecd8cb5_0.conda diff --git a/jwstdp/0.18.1/conda_python_stable-deps.txt b/jwstdp/0.18.1/conda_python_stable-deps.txt new file mode 100644 index 0000000..73a1c75 --- /dev/null +++ b/jwstdp/0.18.1/conda_python_stable-deps.txt @@ -0,0 +1,24 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.12.8-h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1i-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20191231-h14c3975_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.33.0-h62c20be_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.5-h7579374_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.12.5-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-51.0.0-py38h06a4308_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.3.3-py38h06a4308_0.conda diff --git a/jwstdp/0.18.1/reqs_macos-stable-deps.txt b/jwstdp/0.18.1/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..829d92c --- /dev/null +++ b/jwstdp/0.18.1/reqs_macos-stable-deps.txt @@ -0,0 +1,60 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.11 +coverage==5.3 +crds==10.3.1 +cycler==0.10.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.4 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jsonschema==3.2.0 +jwst==0.18.1 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.3 +mccabe==0.6.1 +numpy==1.19.4 +packaging==20.7 +Parsley==1.3 +photutils==1.0.1 +Pillow==8.0.1 +pluggy==0.13.1 +poppy==0.9.1 +psutil==5.7.3 +py==1.9.0 +pycodestyle==2.6.0 +pyerfa==1.7.1.1 +pyflakes==2.2.0 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.1.2 +pytest-cov==2.10.1 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.1.0 +python-dateutil==2.8.1 +PyYAML==5.3.1 +requests==2.25.0 +requests-mock==1.8.0 +scipy==1.5.4 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.0 +urllib3==1.26.2 diff --git a/jwstdp/0.18.1/reqs_stable-deps.txt b/jwstdp/0.18.1/reqs_stable-deps.txt new file mode 100644 index 0000000..4b1d1dc --- /dev/null +++ b/jwstdp/0.18.1/reqs_stable-deps.txt @@ -0,0 +1,64 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.11 +coverage==5.3 +crds==10.3.1 +cycler==0.10.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.4 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jplephem==2.9 +jsonschema==3.2.0 +jwst==0.18.1 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.3 +mccabe==0.6.1 +numpy==1.19.4 +packaging==20.7 +Parsley==1.3 +photutils==1.0.1 +Pillow==8.0.1 +pluggy==0.13.1 +poppy==0.9.1 +psutil==5.7.3 +py==1.9.0 +pycodestyle==2.6.0 +pyerfa==1.7.1.1 +pyflakes==2.2.0 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.1.2 +pytest-cov==2.10.1 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-sugar==0.9.4 +pytest-xdist==2.1.0 +python-dateutil==2.8.1 +PyYAML==5.3.1 +requests==2.25.0 +requests-mock==1.8.0 +scipy==1.5.4 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +termcolor==1.1.0 +toml==0.10.2 +tweakwcs==0.7.0 +urllib3==1.26.2 diff --git a/jwstdp/0.18.2/README.md b/jwstdp/0.18.2/README.md new file mode 100644 index 0000000..b74c296 --- /dev/null +++ b/jwstdp/0.18.2/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.18.2 --file +https://ssb.stsci.edu/releases/jwstdp/0.18.2/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.18.2 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.18.2/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.18.2 --file +https://ssb.stsci.edu/releases/jwstdp/0.18.2/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.18.2 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.18.2/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.18.2/conda_python_macos-stable-deps.txt b/jwstdp/0.18.2/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..af466ff --- /dev/null +++ b/jwstdp/0.18.2/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2020.12.8-hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1i-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20191231-h1de35cc_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.33.0-hffcf06c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.5-h26836e1_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.12.5-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-51.1.2-py38hecd8cb5_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.3.3-py38hecd8cb5_0.conda diff --git a/jwstdp/0.18.2/conda_python_stable-deps.txt b/jwstdp/0.18.2/conda_python_stable-deps.txt new file mode 100644 index 0000000..a1b53db --- /dev/null +++ b/jwstdp/0.18.2/conda_python_stable-deps.txt @@ -0,0 +1,24 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2020.12.8-h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1i-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20191231-h14c3975_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.33.0-h62c20be_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.5-h7579374_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.12.5-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-51.1.2-py38h06a4308_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.3.3-py38h06a4308_0.conda diff --git a/jwstdp/0.18.2/reqs_macos-stable-deps.txt b/jwstdp/0.18.2/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..ea65af0 --- /dev/null +++ b/jwstdp/0.18.2/reqs_macos-stable-deps.txt @@ -0,0 +1,60 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.11 +coverage==5.3 +crds==10.3.1 +cycler==0.10.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.4 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jsonschema==3.2.0 +jwst==0.18.2 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.3 +mccabe==0.6.1 +numpy==1.19.4 +packaging==20.7 +Parsley==1.3 +photutils==1.0.1 +Pillow==8.0.1 +pluggy==0.13.1 +poppy==0.9.1 +psutil==5.7.3 +py==1.9.0 +pycodestyle==2.6.0 +pyerfa==1.7.1.1 +pyflakes==2.2.0 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.1.2 +pytest-cov==2.10.1 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.1.0 +python-dateutil==2.8.1 +PyYAML==5.3.1 +requests==2.25.0 +requests-mock==1.8.0 +scipy==1.5.4 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.0 +urllib3==1.26.2 diff --git a/jwstdp/0.18.2/reqs_stable-deps.txt b/jwstdp/0.18.2/reqs_stable-deps.txt new file mode 100644 index 0000000..29b0027 --- /dev/null +++ b/jwstdp/0.18.2/reqs_stable-deps.txt @@ -0,0 +1,66 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.3 +crds==10.3.1 +cycler==0.10.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.4 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jplephem==2.9 +jsonschema==3.2.0 +jwst==0.18.2 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.3 +mccabe==0.6.1 +numpy==1.19.4 +packaging==20.7 +Parsley==1.3 +photutils==1.0.1 +Pillow==8.0.1 +pluggy==0.13.1 +poppy==0.9.1 +psutil==5.7.3 +py==1.9.0 +pycodestyle==2.6.0 +pyerfa==1.7.1.1 +pyflakes==2.2.0 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.1.2 +pytest-cov==2.10.1 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-sugar==0.9.4 +pytest-xdist==2.1.0 +python-dateutil==2.8.1 +PyYAML==5.3.1 +requests==2.25.0 +requests-mock==1.8.0 +scipy==1.5.4 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +termcolor==1.1.0 +toml==0.10.2 +tweakwcs==0.7.0 +urllib3==1.26.2 diff --git a/jwstdp/0.18.3/README.md b/jwstdp/0.18.3/README.md new file mode 100644 index 0000000..a1f1605 --- /dev/null +++ b/jwstdp/0.18.3/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.18.3 --file +https://ssb.stsci.edu/releases/jwstdp/0.18.3/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.18.3 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.18.3/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-0.18.3 --file +https://ssb.stsci.edu/releases/jwstdp/0.18.3/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-0.18.3 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/0.18.3/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/0.18.3/conda_python_macos-stable-deps.txt b/jwstdp/0.18.3/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..e7a5be5 --- /dev/null +++ b/jwstdp/0.18.3/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2021.1.19-hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1i-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20191231-h1de35cc_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.0-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.33.0-hffcf06c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.5-h26836e1_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.12.5-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-51.3.3-py38hecd8cb5_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-20.3.3-py38hecd8cb5_0.conda diff --git a/jwstdp/0.18.3/conda_python_stable-deps.txt b/jwstdp/0.18.3/conda_python_stable-deps.txt new file mode 100644 index 0000000..633dd45 --- /dev/null +++ b/jwstdp/0.18.3/conda_python_stable-deps.txt @@ -0,0 +1,24 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.8.4 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2021.1.19-h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1i-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20191231-h14c3975_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.0-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.33.0-h62c20be_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.5-h7579374_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.12.5-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-51.3.3-py38h06a4308_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-20.3.3-py38h06a4308_0.conda diff --git a/jwstdp/0.18.3/reqs_macos-stable-deps.txt b/jwstdp/0.18.3/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..762f21e --- /dev/null +++ b/jwstdp/0.18.3/reqs_macos-stable-deps.txt @@ -0,0 +1,60 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.11 +coverage==5.3 +crds==10.3.1 +cycler==0.10.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.4 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jsonschema==3.2.0 +jwst==0.18.3 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.3 +mccabe==0.6.1 +numpy==1.19.4 +packaging==20.7 +Parsley==1.3 +photutils==1.0.1 +Pillow==8.0.1 +pluggy==0.13.1 +poppy==0.9.1 +psutil==5.7.3 +py==1.9.0 +pycodestyle==2.6.0 +pyerfa==1.7.1.1 +pyflakes==2.2.0 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.1.2 +pytest-cov==2.10.1 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.1.0 +python-dateutil==2.8.1 +PyYAML==5.3.1 +requests==2.25.0 +requests-mock==1.8.0 +scipy==1.5.4 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.0 +urllib3==1.26.2 diff --git a/jwstdp/0.18.3/reqs_stable-deps.txt b/jwstdp/0.18.3/reqs_stable-deps.txt new file mode 100644 index 0000000..8b3b664 --- /dev/null +++ b/jwstdp/0.18.3/reqs_stable-deps.txt @@ -0,0 +1,66 @@ +apipkg==1.5 +asdf==2.7.1 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==3.0.4 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.3 +crds==10.3.1 +cycler==0.10.0 +Cython==0.29.21 +drizzle==1.13.1 +execnet==1.7.1 +filelock==3.0.12 +flake8==3.8.4 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jplephem==2.9 +jsonschema==3.2.0 +jwst==0.18.3 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.3 +mccabe==0.6.1 +numpy==1.19.4 +packaging==20.7 +Parsley==1.3 +photutils==1.0.1 +Pillow==8.0.1 +pluggy==0.13.1 +poppy==0.9.1 +psutil==5.7.3 +py==1.9.0 +pycodestyle==2.6.0 +pyerfa==1.7.1.1 +pyflakes==2.2.0 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.1.2 +pytest-cov==2.10.1 +pytest-doctestplus==0.8.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-sugar==0.9.4 +pytest-xdist==2.1.0 +python-dateutil==2.8.1 +PyYAML==5.3.1 +requests==2.25.0 +requests-mock==1.8.0 +scipy==1.5.4 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +termcolor==1.1.0 +toml==0.10.2 +tweakwcs==0.7.0 +urllib3==1.26.2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-linux-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-linux-py27.0.txt new file mode 100644 index 0000000..50c905f --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-linux-py27.0.txt @@ -0,0 +1,119 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.0.6.dev6-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.7.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.24.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.11.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-v1.1.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-v0.6rc1.dev31-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev531-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-2.9.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.6.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev9-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-linux-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-linux-py35.0.txt new file mode 100644 index 0000000..b0850cf --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-linux-py35.0.txt @@ -0,0 +1,107 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.0.6.dev6-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.7.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.24.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.11.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-v1.1.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-v0.6rc1.dev31-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev531-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-2.9.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev9-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-osx-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-osx-py27.0.txt new file mode 100644 index 0000000..a2f0e3b --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-osx-py27.0.txt @@ -0,0 +1,107 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.0.6.dev6-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.7.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.11.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-v1.1.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-v0.6rc1.dev31-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev531-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-2.9.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python.app-1.2-py27_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.6.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev9-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-osx-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-osx-py35.0.txt new file mode 100644 index 0000000..b0f2610 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc1-osx-py35.0.txt @@ -0,0 +1,98 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.0.6.dev6-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.7.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.24.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.11.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-v1.1.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-v0.6rc1.dev31-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev531-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-2.9.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python.app-1.2-py35_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev9-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py27.0.txt new file mode 100644 index 0000000..b3014d4 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py27.0.txt @@ -0,0 +1,119 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.0.6.dev45-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.8.dev2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-v1.1.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-v0.6rc1.dev31-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev585-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev11-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py27.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py27.1.txt new file mode 100644 index 0000000..9a31371 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py27.1.txt @@ -0,0 +1,122 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.0.6.dev45-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.8.dev2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-v1.1.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-v0.6rc1.dev31-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev585-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev11-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py27.2.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py27.2.txt new file mode 100644 index 0000000..9d8fad2 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py27.2.txt @@ -0,0 +1,123 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.0.6.dev45-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.8.dev2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-v1.1.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-v0.6rc1.dev31-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev585-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev11-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py35.0.txt new file mode 100644 index 0000000..5abea48 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py35.0.txt @@ -0,0 +1,107 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.0.6.dev45-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.8.dev2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-v1.1.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-v0.6rc1.dev31-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev585-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev11-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py35.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py35.1.txt new file mode 100644 index 0000000..cda715a --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py35.1.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.0.6.dev45-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.8.dev2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-v1.1.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-v0.6rc1.dev31-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev585-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev11-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py35.2.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py35.2.txt new file mode 100644 index 0000000..b4ef045 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-linux-py35.2.txt @@ -0,0 +1,111 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.0.6.dev45-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.8.dev2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-v1.1.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-v0.6rc1.dev31-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev585-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.1.3.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev11-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py27.0.txt new file mode 100644 index 0000000..9105eb8 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py27.0.txt @@ -0,0 +1,106 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.0.6.dev45-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.8.dev2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-v1.1.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-v0.6rc1.dev31-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev585-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev11-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py27.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py27.1.txt new file mode 100644 index 0000000..3be5d02 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py27.1.txt @@ -0,0 +1,109 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.0.6.dev45-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.8.dev2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-v1.1.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-v0.6rc1.dev31-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev585-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev11-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py27.2.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py27.2.txt new file mode 100644 index 0000000..86b0dca --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py27.2.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.0.6.dev45-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.8.dev2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-v1.1.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-v0.6rc1.dev31-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev585-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.11.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev11-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py35.0.txt new file mode 100644 index 0000000..079224a --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py35.0.txt @@ -0,0 +1,97 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.0.6.dev45-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.8.dev2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-v1.1.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-v0.6rc1.dev31-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev585-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev11-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py35.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py35.1.txt new file mode 100644 index 0000000..d8b409c --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py35.1.txt @@ -0,0 +1,100 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.0.6.dev45-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.8.dev2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-v1.1.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-v0.6rc1.dev31-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev585-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev11-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py35.2.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py35.2.txt new file mode 100644 index 0000000..59e3006 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc2-osx-py35.2.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.0.6.dev45-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.8.dev2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-v1.1.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-v0.6rc1.dev31-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev585-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-8.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.5.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.1.3.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev11-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py27.0.txt new file mode 100644 index 0000000..c4dba3b --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py27.0.txt @@ -0,0 +1,123 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.0.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.9.dev2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.3.dev3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev709-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev11-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py27.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py27.1.txt new file mode 100644 index 0000000..bee3042 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py27.1.txt @@ -0,0 +1,123 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.0.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.9.dev2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.3.dev3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc3.dev9-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev709-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev11-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py35.0.txt new file mode 100644 index 0000000..d5f6245 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py35.0.txt @@ -0,0 +1,111 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.0.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.9.dev2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.3.dev3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev709-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev11-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py35.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py35.1.txt new file mode 100644 index 0000000..6be1c3c --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-linux-py35.1.txt @@ -0,0 +1,111 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.0.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.9.dev2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.3.dev3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc3.dev9-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev709-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.1.dev11-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py27.0.txt new file mode 100644 index 0000000..f9823b9 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py27.0.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.0.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.9.dev2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.3.dev3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev709-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev11-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py27.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py27.1.txt new file mode 100644 index 0000000..eebabbf --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py27.1.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.0.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.9.dev2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.3.dev3-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc3.dev9-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev709-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev11-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py35.0.txt new file mode 100644 index 0000000..c51ee4c --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py35.0.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.0.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.9.dev2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.3.dev3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev709-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev11-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py35.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py35.1.txt new file mode 100644 index 0000000..9bc0e89 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc3-osx-py35.1.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.0.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.9.dev2-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.3.dev3-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc3.dev9-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev709-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.1.dev11-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-linux-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-linux-py27.0.txt new file mode 100644 index 0000000..8f4fea3 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-linux-py27.0.txt @@ -0,0 +1,123 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.0.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.10.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.3.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc4.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev715-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-linux-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-linux-py35.0.txt new file mode 100644 index 0000000..6d1a566 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-linux-py35.0.txt @@ -0,0 +1,111 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.0.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.10.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.3.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc4.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev715-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-osx-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-osx-py27.0.txt new file mode 100644 index 0000000..4147497 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-osx-py27.0.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.0.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.10.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.3.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc4.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev715-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-osx-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-osx-py35.0.txt new file mode 100644 index 0000000..19cd00d --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc4-osx-py35.0.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.0.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.10.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.3.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc4.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev715-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py27.0.txt new file mode 100644 index 0000000..c4ab89f --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py27.0.txt @@ -0,0 +1,123 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.0.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.10.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.3.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc5.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev715-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py27.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py27.1.txt new file mode 100644 index 0000000..9a217e4 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py27.1.txt @@ -0,0 +1,123 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.0.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.12.18-6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.11.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.3.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc5.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev715-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.32.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py35.0.txt new file mode 100644 index 0000000..d877c8d --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py35.0.txt @@ -0,0 +1,111 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.0.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.10.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.3.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc5.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev715-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py35.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py35.1.txt new file mode 100644 index 0000000..f2ee246 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-linux-py35.1.txt @@ -0,0 +1,111 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.0.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.11.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.3.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.11.1-6.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.43.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc5.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev715-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.0-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py27.0.txt new file mode 100644 index 0000000..6fe841a --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py27.0.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.0.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.10.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.3.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc5.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev715-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py27.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py27.1.txt new file mode 100644 index 0000000..c562148 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py27.1.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.0.dev1-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.11.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.3.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc5.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev715-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py35.0.txt new file mode 100644 index 0000000..68aa8a2 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py35.0.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.0.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.10.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.3.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc5.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev715-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py35.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py35.1.txt new file mode 100644 index 0000000..74f7920 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc5-osx-py35.1.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.0.dev1-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev4377-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.11.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.3.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc5.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev715-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-linux-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-linux-py27.0.txt new file mode 100644 index 0000000..5029968 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-linux-py27.0.txt @@ -0,0 +1,125 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev12-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev5740-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.12.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.5.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev10-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc6.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev722-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-linux-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-linux-py35.0.txt new file mode 100644 index 0000000..425608d --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-linux-py35.0.txt @@ -0,0 +1,113 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev12-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev5740-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.12.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.5.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev10-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc6.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev722-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-osx-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-osx-py27.0.txt new file mode 100644 index 0000000..cc8b0c9 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-osx-py27.0.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev12-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev5770-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.12.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.5.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev10-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc6.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev722-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-osx-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-osx-py35.0.txt new file mode 100644 index 0000000..ded93e6 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc6-osx-py35.0.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev12-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev5770-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.12.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.5.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev10-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc6.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev722-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-linux-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-linux-py27.0.txt new file mode 100644 index 0000000..892c5a3 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-linux-py27.0.txt @@ -0,0 +1,125 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev12-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev5740-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.12.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.5.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev10-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc7.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev722-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-linux-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-linux-py35.0.txt new file mode 100644 index 0000000..14423a7 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-linux-py35.0.txt @@ -0,0 +1,113 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev12-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev5740-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.12.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.5.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev10-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.0rc7.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev722-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-osx-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-osx-py27.0.txt new file mode 100644 index 0000000..cc3949e --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-osx-py27.0.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev12-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev5770-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.12.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.5.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev10-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc7.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev722-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-osx-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-osx-py35.0.txt new file mode 100644 index 0000000..0b3282a --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.0rc7-osx-py35.0.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev12-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev5770-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.12.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.5.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev10-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.0rc7.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev722-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py27.0.txt new file mode 100644 index 0000000..04ea36f --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py27.0.txt @@ -0,0 +1,125 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev12-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev5740-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.12.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.5.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev10-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.7.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev722-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py27.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py27.1.txt new file mode 100644 index 0000000..e32a24d --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py27.1.txt @@ -0,0 +1,125 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev12-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev5740-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.12.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.5.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev10-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.7.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev722-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py35.0.txt new file mode 100644 index 0000000..1fea9fc --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py35.0.txt @@ -0,0 +1,113 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev12-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev5740-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.12.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.5.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev10-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.7.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev722-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py35.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py35.1.txt new file mode 100644 index 0000000..5ac5d26 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.7-linux-py35.1.txt @@ -0,0 +1,113 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev12-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-1.3dev5740-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.0.12.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.10-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.5.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7rc2.dev10-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.7.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev722-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py27.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py27.0.txt new file mode 100644 index 0000000..12d1366 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py27.0.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev12-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev5770-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.12.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.5.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev10-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.7.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev722-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py27.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py27.1.txt new file mode 100644 index 0000000..12d1366 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py27.1.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev12-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev5770-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.12.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.5.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev10-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.7.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev722-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py35.0.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py35.0.txt new file mode 100644 index 0000000..2ac95e1 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py35.0.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev12-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev5770-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.12.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.5.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev10-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.7.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev722-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py35.1.txt b/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py35.1.txt new file mode 100644 index 0000000..2ac95e1 --- /dev/null +++ b/jwstdp/0.7.7/dev/jwstdp-0.7.7-osx-py35.1.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev12-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-1.3dev5770-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.0.12.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.10-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.5.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7rc2.dev10-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-8d-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.7.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev722-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.7/jwstdp-0.7.7-linux-py27.final.txt b/jwstdp/0.7.7/jwstdp-0.7.7-linux-py27.final.txt new file mode 100644 index 0000000..8e744ec --- /dev/null +++ b/jwstdp/0.7.7/jwstdp-0.7.7-linux-py27.final.txt @@ -0,0 +1,125 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/asdf-1.2.1.dev12-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/astropy-1.3dev5740-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/cairo-1.14.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/cloudpickle-0.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/crds-7.0.12.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/decorator-4.0.10-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/drizzle-1.5.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/gwcs-0.7rc2.dev10-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/ipython-5.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/jsonschema-2.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/jwst-0.7.7.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pexpect-4.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/photutils-v0.2.dev722-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pyqt-5.6.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/qt-5.6.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/requests-2.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.sphere-0.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/toolz-0.8.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/traitlets-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.7.7/jwstdp-0.7.7-linux-py35.final.txt b/jwstdp/0.7.7/jwstdp-0.7.7-linux-py35.final.txt new file mode 100644 index 0000000..fcfd617 --- /dev/null +++ b/jwstdp/0.7.7/jwstdp-0.7.7-linux-py35.final.txt @@ -0,0 +1,113 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/asdf-1.2.1.dev12-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/astropy-1.3dev5740-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/cloudpickle-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/crds-7.0.12.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/decorator-4.0.10-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/drizzle-1.5.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/gwcs-0.7rc2.dev10-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/ipython-5.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/jsonschema-2.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/jwst-0.7.7.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pexpect-4.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/photutils-v0.2.dev722-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pyqt-5.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/qt-5.6.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/requests-2.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/toolz-0.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/traitlets-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/linux-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.7.7/jwstdp-0.7.7-osx-py27.final.txt b/jwstdp/0.7.7/jwstdp-0.7.7-osx-py27.final.txt new file mode 100644 index 0000000..ceab480 --- /dev/null +++ b/jwstdp/0.7.7/jwstdp-0.7.7-osx-py27.final.txt @@ -0,0 +1,110 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/appnope-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/asdf-1.2.1.dev12-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/astropy-1.3dev5770-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/bokeh-0.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/chest-0.2.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/cloudpickle-0.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/crds-7.0.12.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/dask-0.12.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/decorator-4.0.10-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/drizzle-1.5.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/drizzlepac-2.1.7rc.dev4-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/fitsblender-0.2.6.dev5-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/futures-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/gwcs-0.7rc2.dev10-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/h5py-2.6.0-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/heapdict-1.0.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/ipython-5.1.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/ipython_genutils-0.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/jinja2-2.8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/jplephem-v2.4.dev8-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/jsonschema-2.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/jwst-0.7.7.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/matplotlib-1.5.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/networkx-1.11-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/nictools-1.1.3.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/numpy-1.11.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pandas-0.19.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/partd-0.3.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/path.py-8.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pathlib2-2.1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pexpect-4.0.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/photutils-v0.2.dev722-np111py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pillow-3.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/prompt_toolkit-1.0.9-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/py-1.4.31-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pygments-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pyqt-5.6.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/pyregion-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pytest-3.0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/python-2.7.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/pytools-2016.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pytz-2016.10-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/qt-5.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/requests-2.12.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/scikit-image-0.12.3-np111py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/scipy-0.18.1-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.convolve-2.2.0.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.distutils-0.3.8.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.image-2.2.0.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.imagemanip-1.1.2.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.imagestats-1.4.1.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.ndimage-0.10.1.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.skypac-0.9.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.sphere-0.2-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.stimage-0.2.1.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.tools-3.4.2.1.dev0-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stwcs-1.3.0rc.dev3-np111py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/toolz-0.8.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/tornado-4.4.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/traitlets-4.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.7.7/jwstdp-0.7.7-osx-py35.final.txt b/jwstdp/0.7.7/jwstdp-0.7.7-osx-py35.final.txt new file mode 100644 index 0000000..52dd34a --- /dev/null +++ b/jwstdp/0.7.7/jwstdp-0.7.7-osx-py35.final.txt @@ -0,0 +1,101 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/appnope-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/asdf-1.2.1.dev12-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/astropy-1.3dev5770-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/beautifulsoup4-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/bokeh-0.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/chest-0.2.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/cloudpickle-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/crds-7.0.12.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/dask-0.12.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/decorator-4.0.10-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/drizzle-1.5.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/drizzlepac-2.1.7rc.dev4-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/fitsblender-0.2.6.dev5-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/freetype-2.5.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/gwcs-0.7rc2.dev10-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/h5py-2.6.0-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/heapdict-1.0.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/ipython-5.1.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/ipython_genutils-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/jinja2-2.8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/jpeg-8d-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/jplephem-v2.4.dev8-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/jsonschema-2.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/jwst-0.7.7.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/libpng-1.6.22-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/libtiff-4.0.6-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/matplotlib-1.5.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/mkl-11.3.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/nictools-1.1.3.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/numpy-1.11.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/openssl-1.0.2j-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pandas-0.19.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/partd-0.3.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/path.py-8.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pexpect-4.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/photutils-v0.2.dev722-np111py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pillow-3.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/prompt_toolkit-1.0.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/py-1.4.31-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pygments-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pyqt-5.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/pyregion-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pytest-3.0.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/python-3.5.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/pytools-2016.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pytz-2016.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/qt-5.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/requests-2.12.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/scikit-image-0.12.3-np111py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/scipy-0.18.1-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.convolve-2.2.0.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.distutils-0.3.8.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.image-2.2.0.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.imagemanip-1.1.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.imagestats-1.4.1.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.ndimage-0.10.1.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.skypac-0.9.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.sphere-0.2.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.stimage-0.2.1.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stsci.tools-3.4.2.1.dev0-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/stwcs-1.3.0rc.dev3-np111py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/toolz-0.8.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/tornado-4.4.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/traitlets-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/conda-dev/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/xz-5.2.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.7/free/osx-64/zlib-1.2.8-3.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.7.7/release_notes.md b/jwstdp/0.7.7/release_notes.md new file mode 100644 index 0000000..02a97c4 --- /dev/null +++ b/jwstdp/0.7.7/release_notes.md @@ -0,0 +1 @@ +# Pending... diff --git a/jwstdp/0.7.8/README.md b/jwstdp/0.7.8/README.md new file mode 100644 index 0000000..440e552 --- /dev/null +++ b/jwstdp/0.7.8/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.7.8 --file http://ssb.stsci.edu/releases/jwstdp/0.7.8/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.7.8 --file http://ssb.stsci.edu/releases/jwstdp/0.7.8/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh +$ bash Anaconda3-4.3.1-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.11-Linux-x86_64.sh +$ bash Miniconda3-4.3.11-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.7.8 --file http://ssb.stsci.edu/releases/jwstdp/0.7.8/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.7.8 +``` diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-linux-py27.0.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-linux-py27.0.txt new file mode 100644 index 0000000..0323365 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-linux-py27.0.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev33-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6804-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.5-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.3.dev17-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.14.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.5.dev16-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.16.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev8-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev39-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1008-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5.dev2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.10.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev4-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-linux-py35.0.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-linux-py35.0.txt new file mode 100644 index 0000000..8a19783 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-linux-py35.0.txt @@ -0,0 +1,119 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev33-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.dev6804-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.5-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.3.dev17-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.14.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.10-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.0.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.5.dev16-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.16.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.1.dev8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev39-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.2-np112py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1008-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5.dev2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.10.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2rc1.dev4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-osx-py27.0.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-osx-py27.0.txt new file mode 100644 index 0000000..ea2a137 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-osx-py27.0.txt @@ -0,0 +1,119 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev33-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6804-np112py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.5-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.3.dev17-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.14.3-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.5.dev16-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.16.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev8-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev39-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc1.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py27_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.2-np112py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1008-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.4.0.2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5.dev2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.10.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev4-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-osx-py35.0.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-osx-py35.0.txt new file mode 100644 index 0000000..7098cb8 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc1-osx-py35.0.txt @@ -0,0 +1,109 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev33-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-2.0.dev6804-np112py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.5-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.370-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.2.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.3.dev17-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.25.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.14.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.0.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.5.dev16-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.16.dev2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.1.dev8-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev39-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-0.23-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.2-np112py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1008-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.1.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.1.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5.dev2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.10.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2rc1.dev4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.8-3.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-linux-py27.0.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-linux-py27.0.txt new file mode 100644 index 0000000..69d0f9d --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-linux-py27.0.txt @@ -0,0 +1,136 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev67-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8078-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.4.dev126-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev50-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1073-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.5.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5.dev2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-linux-py35.0.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-linux-py35.0.txt new file mode 100644 index 0000000..d685552 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-linux-py35.0.txt @@ -0,0 +1,123 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev67-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8078-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.6-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.4.dev126-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev50-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1073-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5.dev2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-linux-py36.0.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-linux-py36.0.txt new file mode 100644 index 0000000..546a7e0 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-linux-py36.0.txt @@ -0,0 +1,123 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev67-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8078-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.4.dev126-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.17.dev2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev50-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1073-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5.dev2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-osx-py27.0.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-osx-py27.0.txt new file mode 100644 index 0000000..a49f8a2 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-osx-py27.0.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev67-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8078-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.4.dev126-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev50-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1073-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.5.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5.dev2-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-osx-py35.0.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-osx-py35.0.txt new file mode 100644 index 0000000..9006c0f --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-osx-py35.0.txt @@ -0,0 +1,114 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev67-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8078-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.6-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.4.dev126-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev50-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1073-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5.dev2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-osx-py36.0.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-osx-py36.0.txt new file mode 100644 index 0000000..b7bd6af --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc2-osx-py36.0.txt @@ -0,0 +1,114 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev67-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8078-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.6-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.4.dev126-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.17.dev2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev50-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.27-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1073-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-27.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5.dev2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-linux-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-linux-py35.00.txt new file mode 100644 index 0000000..57f252e --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-linux-py35.00.txt @@ -0,0 +1,129 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev147-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.22.0-py35h0d675fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.2-py35h2d2a8a6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.9-py35hebc9bbc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2017.7.27.1-py35h19f42a1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.10.0-py35h796c292_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py35h10376d1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.5.dev76-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.0.3-py35hef72dfd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26.1-py35h636ebcb_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.3-py35h52d6c43_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.15.3-py35hdf4792c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.22-h3b5a359_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py35h3a268aa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.19.1-py35h399b246_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.19.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.4-hc00ebd1_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-h52ed37b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.53.6-hc861d11_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.12.2-he3457e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.12.2-h4f93127_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev56-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py35h51e6c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h211956c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.2.0-py35hd0a6de2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-h15fc484_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35h90b8645_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-habf39ab_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-h4deb6c0_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hcbc56d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-h6fcbd8e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.32-hda9c8bc_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-h24385c6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.8-h90200ff_9.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-he6ee5dd_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-h6b072ca_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-hcf9102b_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py35h4935ab9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-py35hdbc49ba_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.0-hb491cac_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.4.8-py35h783f4c8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.0-h06874d7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35hf333c83_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.13.1-py35h8926d81_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35h2c86149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-h9d1a558_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py35h85c2c75_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.41-hc71a17e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1103-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py35h03abc04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35haa8ec2a_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.2.2-py35h75e6a48_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py35hd71111f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-17.2.0-py35h1d2a76c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.7-py35h6aefbb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py35hc97c719_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.4-h72f0b78_15.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py35h90d5b31_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35h9225bff_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-hac23ff0_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-py35h3573165_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-py35ha8f041b_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.5.0-py35ha8c1747_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35h5312c1b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.7-py35h683703c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.20.1-h6d8b0f3_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5.dev2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-h5979e9b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py35h90f1797_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py35hf879e1d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35h601ca99_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-h2bcbf08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-h96e3832_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-hfbfcf68_1.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-linux-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-linux-py36.00.txt new file mode 100644 index 0000000..6558b1f --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-linux-py36.00.txt @@ -0,0 +1,129 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev147-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.22.0-py36h265ca7c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-2.0.2-py36ha51211e_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.9-py36hca3971f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2017.7.27.1-py36h8b7b77e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.10.0-py36had8d393_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py36h30f8c20_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.5.dev76-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.0.3-py36ha225213_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26.1-py36h21c49d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.3-py36hdc2c8aa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.15.3-py36h10e6167_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.22-h3b5a359_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py36hd076ac8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.19.1-py36h25f3894_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.19.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.4-hc00ebd1_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-h52ed37b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.53.6-hc861d11_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.12.2-he3457e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.12.2-h4f93127_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev56-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36h79797d7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h211956c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.2.0-py36he555465_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-h15fc484_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py36h489bce4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-habf39ab_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36h006f8b5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-h4deb6c0_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hcbc56d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-h6fcbd8e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.32-hda9c8bc_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-h24385c6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.8-h90200ff_9.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-he6ee5dd_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-h6b072ca_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-hcf9102b_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py36h6c6e760_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-py36h2acb4ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.0-hb491cac_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.4.8-py36hec4c5d1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.0-h06874d7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py36hfb3574a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36hcdf7029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.13.1-py36h5bc529a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py36h79f9f78_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-h9d1a558_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py36h842e28d_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.41-hc71a17e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1103-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py36h9119f52_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36h8ec8b28_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.2.2-py36h74c8701_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py36h0712aa3_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-17.2.0-py36h5cc804b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36h0386399_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.7-py36hd97a5b1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py36h11ad3bb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.2-hdfe5801_15.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36h88d3b88_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py36hc2ccc2a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-hac23ff0_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-py36had3c07a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-py36h9976243_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.5.0-py36he42e2e1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18.1-py36h51ed4ed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py36hcac75e4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.7-py36hdf89491_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.20.1-h6d8b0f3_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.5.dev2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-h5979e9b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py36h81f2dff_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py36h1283b2a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py36he7f4e38_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-h2bcbf08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-h96e3832_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-hfbfcf68_1.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-osx-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-osx-py35.00.txt new file mode 100644 index 0000000..8fe3dac --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-osx-py35.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev147-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8477-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.5.dev76-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.19.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev56-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1103-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5.dev2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-osx-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-osx-py36.00.txt new file mode 100644 index 0000000..46dbbd2 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc3-osx-py36.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev147-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8477-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.5.dev76-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.19.dev0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev56-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1103-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.5.dev2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-linux-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-linux-py35.00.txt new file mode 100644 index 0000000..52dba3e --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-linux-py35.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev166-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8723-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.5.dev110-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev58-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc5.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1188-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.6.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-linux-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-linux-py36.00.txt new file mode 100644 index 0000000..4c21a7a --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-linux-py36.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev166-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8723-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.5.dev110-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev58-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc5.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1188-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.6.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-osx-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-osx-py35.00.txt new file mode 100644 index 0000000..74f0098 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-osx-py35.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev166-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8723-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.5.dev110-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev58-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc5.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1188-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.6.dev2-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-osx-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-osx-py36.00.txt new file mode 100644 index 0000000..11731f0 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc5-osx-py36.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev166-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8723-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.5.dev110-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev58-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc5.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1188-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.6.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-linux-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-linux-py35.00.txt new file mode 100644 index 0000000..231a2c0 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-linux-py35.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev171-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8728-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.5.dev110-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev60-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc6.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1188-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-linux-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-linux-py36.00.txt new file mode 100644 index 0000000..7ab05e9 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-linux-py36.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev171-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8728-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.5.dev110-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.7.dev60-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc6.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.2.dev1188-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-osx-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-osx-py35.00.txt new file mode 100644 index 0000000..c34f0c6 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-osx-py35.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev171-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8728-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.5.dev110-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev60-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc6.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1188-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-osx-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-osx-py36.00.txt new file mode 100644 index 0000000..d060357 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc6-osx-py36.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev171-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8728-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.5.dev110-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.7.dev60-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc6.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.2.dev1188-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-linux-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-linux-py35.00.txt new file mode 100644 index 0000000..06e46b6 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-linux-py35.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev179-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8769-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.6.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8rc.dev4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.4.dev2-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-linux-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-linux-py36.00.txt new file mode 100644 index 0000000..adc23b4 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-linux-py36.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.2.1.dev179-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8769-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.6.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8rc.dev4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc7.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.4.dev2-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-osx-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-osx-py35.00.txt new file mode 100644 index 0000000..0ee4fb0 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-osx-py35.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev179-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8769-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.6.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8rc.dev4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc7.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.4.dev2-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-osx-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-osx-py36.00.txt new file mode 100644 index 0000000..7a0cf3f --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc7-osx-py36.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.2.1.dev179-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8769-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.6.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8rc.dev4-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc7.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.4.dev2-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-linux-py27.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-linux-py27.00.txt new file mode 100644 index 0000000..5f62a91 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-linux-py27.00.txt @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.3.1.dev7-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8252-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.7.dev2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8rc.dev16-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc8.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.4.dev7-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.5.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-linux-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-linux-py35.00.txt new file mode 100644 index 0000000..8bf63c9 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-linux-py35.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.3.1.dev7-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8840-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.7.dev2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8rc.dev16-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.4.dev7-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-linux-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-linux-py36.00.txt new file mode 100644 index 0000000..9f824c3 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-linux-py36.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.3.1.dev7-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8842-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.7.dev2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8rc.dev16-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc8.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.4.dev7-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-osx-py27.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-osx-py27.00.txt new file mode 100644 index 0000000..91e47ad --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-osx-py27.00.txt @@ -0,0 +1,125 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.3.1.dev7-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8252-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.7.dev2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8rc.dev16-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc8.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.4.dev7-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.5.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-osx-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-osx-py35.00.txt new file mode 100644 index 0000000..6bea4e9 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-osx-py35.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.3.1.dev7-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8840-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.7.dev2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8rc.dev16-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.4.dev7-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-osx-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-osx-py36.00.txt new file mode 100644 index 0000000..002ea09 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc8-osx-py36.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.3.1.dev7-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8840-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.7.dev2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8rc.dev16-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc8.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.4.dev7-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-linux-py27.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-linux-py27.00.txt new file mode 100644 index 0000000..42658b5 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-linux-py27.00.txt @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.3.1.dev7-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8252-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cairo-1.14.8-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.7.dev2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/enum34-1.1.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/futures-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8rc.dev16-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc9.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pathlib2-2.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.4.dev7-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pixman-0.34.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycairo-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ssl_match_hostname-3.5.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-linux-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-linux-py35.00.txt new file mode 100644 index 0000000..aca3b91 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-linux-py35.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/asdf-1.3.1.dev7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/astropy-3.0.dev8842-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/certifi-2016.2.28-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/cloudpickle-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/crds-7.1.7.dev2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/decorator-4.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/gwcs-0.8rc.dev16-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/jsonschema-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/jwst-0.7.8rc9.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pandas-0.20.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/photutils-v0.4.dev7-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/python-dateutil-2.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/qt-5.6.2-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stwcs-1.3.2.dev8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/zlib-1.2.11-0.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-linux-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-linux-py36.00.txt new file mode 100644 index 0000000..2bdb2c1 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-linux-py36.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.3.1.dev7-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev8842-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.7.dev2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.1.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.1-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.8.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8rc.dev16-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.7.8rc9.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.4.dev7-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-osx-py27.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-osx-py27.00.txt new file mode 100644 index 0000000..fc2793d --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-osx-py27.00.txt @@ -0,0 +1,125 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.3.1.dev7-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8252-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backports_abc-0.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautiful-soup-4.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.7.dev2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/enum34-1.1.6-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/functools32-3.2.3.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/futures-3.1.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/get_terminal_size-1.0.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8rc.dev16-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-5.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc9.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pathlib2-2.3.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.4.dev7-py27_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py27_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-2.7.13-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scandir-1.5-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/singledispatch-3.4.0.3-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ssl_match_hostname-3.5.0.1-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py27_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev8-py27_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/subprocess32-3.2.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py27_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py27_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-osx-py35.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-osx-py35.00.txt new file mode 100644 index 0000000..201f583 --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-osx-py35.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/appnope-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/asdf-1.3.1.dev7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/astropy-3.0.dev8842-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/certifi-2016.2.28-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/cloudpickle-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/crds-7.1.7.dev2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/decorator-4.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/gwcs-0.8rc.dev16-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/jsonschema-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/jwst-0.7.8rc9.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pandas-0.20.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/photutils-v0.4.dev7-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/python-dateutil-2.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stwcs-1.3.2.dev8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/zlib-1.2.11-0.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-osx-py36.00.txt b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-osx-py36.00.txt new file mode 100644 index 0000000..a12d24a --- /dev/null +++ b/jwstdp/0.7.8/dev/jwstdp-0.7.8rc9-osx-py36.00.txt @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.3.1.dev7-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev8842-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bkcharts-0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2016.2.28-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.7.dev2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.26-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.15.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.5.5-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8rc.dev16-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.10.2-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.9.6-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.7.8rc9.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-3.8.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.0.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-0.19-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-1.11-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.20.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/path.py-10.3.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.2.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.4.dev7-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.4.34-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyqt-5.6.0-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.2-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/qt-5.6.2-2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.14.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-0.19.1-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.4.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sip-4.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.10.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.13.0-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev4-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.29.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-0.tar.bz2 diff --git a/jwstdp/0.7.8/latest-linux b/jwstdp/0.7.8/latest-linux new file mode 100644 index 0000000..aca3b91 --- /dev/null +++ b/jwstdp/0.7.8/latest-linux @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/asdf-1.3.1.dev7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/astropy-3.0.dev8842-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/certifi-2016.2.28-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/cloudpickle-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/crds-7.1.7.dev2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/dbus-1.10.20-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/decorator-4.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/expat-2.1.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/fontconfig-2.12.1-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/glib-2.50.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/gstreamer-1.8.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/gwcs-0.8rc.dev16-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/jsonschema-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/jwst-0.7.8rc9.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libffi-3.2.1-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libgcc-5.2.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libgfortran-3.0.0-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libxcb-1.12-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pandas-0.20.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pcre-8.39-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/photutils-v0.4.dev7-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/python-dateutil-2.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/qt-5.6.2-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/stwcs-1.3.2.dev8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/linux-64/zlib-1.2.11-0.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.7.8/latest-osx b/jwstdp/0.7.8/latest-osx new file mode 100644 index 0000000..201f583 --- /dev/null +++ b/jwstdp/0.7.8/latest-osx @@ -0,0 +1,115 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/appnope-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/asdf-1.3.1.dev7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/astropy-3.0.dev8842-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/beautifulsoup4-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/bkcharts-0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/bokeh-0.12.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/certifi-2016.2.28-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/cloudpickle-0.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/crds-7.1.7.dev2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/cycler-0.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/cython-0.26-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/dask-0.15.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/decorator-4.1.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/drizzlepac-2.1.20.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/freetype-2.5.5-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/gwcs-0.8rc.dev16-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/h5py-2.7.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/hdf5-1.8.17-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/icu-54.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/ipython-6.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/ipython_genutils-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/jbig-2.1-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/jedi-0.10.2-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/jinja2-2.9.6-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/jpeg-9b-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/jsonschema-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/jwst-0.7.8rc9.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libgcc-4.8.5-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libiconv-1.14-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libpng-1.6.30-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libtiff-4.0.6-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libxml2-2.9.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/libxslt-1.1.29-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/locket-0.2.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/lxml-3.8.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/markupsafe-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/matplotlib-2.0.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/mkl-2017.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/mpmath-0.19-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/networkx-1.11-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/nose-1.3.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/numpy-1.12.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/olefile-0.44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/openssl-1.0.2l-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pandas-0.20.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/partd-0.3.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/path.py-10.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pexpect-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/photutils-v0.4.dev7-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pickleshare-0.7.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pillow-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pip-9.0.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/prompt_toolkit-1.0.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/ptyprocess-0.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/py-1.4.34-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pygments-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pyparsing-2.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pyqt-5.6.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pytest-3.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/python-3.5.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/python-dateutil-2.6.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pytz-2017.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pywavelets-0.5.2-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/pyyaml-3.12-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/qt-5.6.2-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/readline-6.2-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/requests-2.14.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/scikit-image-0.13.0-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/scipy-0.19.1-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/setuptools-36.4.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/simplegeneric-0.8.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/sip-4.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/six-1.10.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/sqlite-3.13.0-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stsci.tools-3.4.11.dev4-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/stwcs-1.3.2.dev8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/tk-8.5.18-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/toolz-0.8.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/tornado-4.5.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/traitlets-4.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/astroconda-dev/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/wcwidth-0.1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/wheel-0.29.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/xz-5.2.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/yaml-0.1.6-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.7.8/free/osx-64/zlib-1.2.11-0.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.7.8/release_notes.md b/jwstdp/0.7.8/release_notes.md new file mode 100644 index 0000000..dd82ae3 --- /dev/null +++ b/jwstdp/0.7.8/release_notes.md @@ -0,0 +1,31 @@ +# Release Notes + +- 2017/11/13 - 0.7.8rc9 - Iteration 0 + - https://github.com/STScI-JWST/jwst/compare/0.7.8rc8...0.7.8rc9 + - Includes CRDS 7.1.7 + +- 2017/11/10 - 0.7.8rc8 - Iteration 0 + - https://github.com/STScI-JWST/jwst/compare/0.7.8rc7...0.7.8rc8 + - Includes CRDS 7.1.7 + +- 2017/11/06 - 0.7.8rc7 - Iteration 0 + - https://github.com/STScI-JWST/jwst/compare/0.7.8rc6...0.7.8rc7 + - Includes CRDS 7.1.6 + +- 2017/10/25 - 0.7.8rc6 - Iteration 0 + - https://github.com/STScI-JWST/jwst/compare/0.7.8rc5...0.7.8rc6 + - More fixes to get set_telescope_pointing to work (#1372) + - save extra_fits first (#1370) + +- 2017/10/24 - 0.7.8rc5 - Iteration 0 + - https://github.com/STScI-JWST/jwst/compare/0.7.8rc3...0.7.8rc5 + - Skipped RC4 due to bug caught after tagging but prior to delivery + +- 2017/10/03 - 0.7.8rc3 - Iteration 0 + - https://github.com/STScI-JWST/jwst/compare/0.7.8rc2...0.7.8rc3 + - Python 2.x support *dropped* + - Adopted new HSTDP distribution model + +- Delivery comparisons prior to 0.7.8rc3 + - https://github.com/STScI-JWST/jwst/compare/0.7.8rc1...0.7.8rc2 + - https://github.com/STScI-JWST/jwst/compare/0.7.7...0.7.8rc1 diff --git a/jwstdp/0.9.1/README.md b/jwstdp/0.9.1/README.md new file mode 100644 index 0000000..6014b22 --- /dev/null +++ b/jwstdp/0.9.1/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.9.1 --file http://ssb.stsci.edu/releases/jwstdp/0.9.1/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.9.1 --file http://ssb.stsci.edu/releases/jwstdp/0.9.1/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh +$ bash Anaconda3-5.1.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.31-Linux-x86_64.sh +$ bash Miniconda3-4.3.31-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.9.1 --file http://ssb.stsci.edu/releases/jwstdp/0.9.1/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.9.1 +``` diff --git a/jwstdp/0.9.1/dev/jwstdp-0.9.1-linux-py35.00.txt b/jwstdp/0.9.1/dev/jwstdp-0.9.1-linux-py35.00.txt new file mode 100644 index 0000000..3bf8f21 --- /dev/null +++ b/jwstdp/0.9.1/dev/jwstdp-0.9.1-linux-py35.00.txt @@ -0,0 +1,135 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/asdf-1.3.1.dev216+gbe7c59e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/astropy-3.1.0.dev9734+gad1b269-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/cffi-1.11.4-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/cfitsio-3.410-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/crds-7.1.7.dev124+g49f09ff-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/cryptography-2.1.4-py35hbeb2da1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/cython-0.27.3-py35h6cdc64b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/dask-0.17.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/dask-core-0.17.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/dbus-1.12.2-hc3f9b76_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/decorator-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/distributed-1.21.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/gwcs-0.8rc.dev47+g4ab5cfe-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/imageio-2.2.0-py35hd0a6de2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/ipython-6.2.1-py35hd850d2a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/jedi-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/jwst-0.9.1.dev0+g00e5a7c-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/lxml-4.1.1-py35hf71bdeb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/matplotlib-2.1.2-py35h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/msgpack-python-0.5.1-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/numpy-1.14.0-py35h3dfced4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pandas-0.22.0-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/parso-0.1.1-py35h1b200a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pexpect-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/photutils-0.4.dev68+gc827ca9-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pillow-5.0.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pip-9.0.1-py35h7e7da9d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/psutil-5.4.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/py-1.5.2-py35hfe8c5ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pysocks-1.6.7-py35h6aefbb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/python-3.5.4-h417fded_24.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/python-dateutil-2.6.1-py35h90d5b31_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pytz-2017.3-py35hb13c558_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/scipy-1.0.0-py35hcbbe4a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/stsci.tools-3.4.12.dev0+gfd82437-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/wheel-0.30.0-py35hd3883cf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.1/dev/jwstdp-0.9.1-linux-py36.00.txt b/jwstdp/0.9.1/dev/jwstdp-0.9.1-linux-py36.00.txt new file mode 100644 index 0000000..6218a7b --- /dev/null +++ b/jwstdp/0.9.1/dev/jwstdp-0.9.1-linux-py36.00.txt @@ -0,0 +1,132 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.3.1.dev216+gbe7c59e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.1.0.dev9734+gad1b269-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-17.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36h49b8c8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.1.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.4-py36h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.7.dev124+g49f09ff-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.1.4-py36hd09be54_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.27.3-py36h1860423_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.17.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.17.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.12.2-hc3f9b76_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8rc.dev47+g4ab5cfe-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.1-py36h3585f63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.2.0-py36he555465_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.2.1-py36h88c514a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36hb52b0d5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.11.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36ha16c418_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36h006f8b5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.9.1.dev0+g00e5a7c-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.1.1-py36hf71bdeb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.1.2-py36h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36hfeacd6b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.1-py36h6bb024c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.14.0-py36h3dfced4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.22.0-py36hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.1.1-py36h35f843b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.4.dev68+gc827ca9-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36h63277f8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.0.0-py36h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36h6c6f9ce_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py36hb689045_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36h17d85b1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.3-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36h69acd42_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.2-py36h29bf505_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36h0d3125c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-17.5.0-py36h20ba746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36h0386399_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.7-py36hd97a5b1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.4-hc3d631a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36h88d3b88_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.3-py36h63b9c63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.0.0-py36hbf646e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-38.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18.1-py36h51ed4ed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36h372c433_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.12.dev0+gfd82437-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36h674d592_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36hdf4376a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.30.0-py36hfd4bba0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/jwstdp/0.9.1/dev/jwstdp-0.9.1-osx-py35.00.txt b/jwstdp/0.9.1/dev/jwstdp-0.9.1-osx-py35.00.txt new file mode 100644 index 0000000..2ef161a --- /dev/null +++ b/jwstdp/0.9.1/dev/jwstdp-0.9.1-osx-py35.00.txt @@ -0,0 +1,127 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/asdf-1.3.1.dev216+gbe7c59e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/astropy-3.1.0.dev9734+gad1b269-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/cffi-1.11.4-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/cfitsio-3.410-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/crds-7.1.7.dev124+g49f09ff-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/cryptography-2.1.4-py35hbbb57dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/cython-0.27.3-py35h36d65b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/dask-0.17.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/dask-core-0.17.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/decorator-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/distributed-1.21.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/gwcs-0.8rc.dev47+g4ab5cfe-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/imageio-2.2.0-py35h805106e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/ipython-6.2.1-py35h9470683_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/jedi-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/jwst-0.9.1.dev0+g00e5a7c-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/lxml-4.1.1-py35hef8c89e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/matplotlib-2.1.2-py35h6d6146d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/msgpack-python-0.5.1-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/numpy-1.14.0-py35h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pandas-0.22.0-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/parso-0.1.1-py35hbda7c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pexpect-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/photutils-0.4.dev68+gc827ca9-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pillow-5.0.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pip-9.0.1-py35h33ce766_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/psutil-5.4.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/py-1.5.2-py35h4d4d87d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pysocks-1.6.7-py35h3cfcbe1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/python-3.5.4-he720263_23.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/python-dateutil-2.6.1-py35h10515e0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pytz-2017.3-py35heeb7564_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/stsci.tools-3.4.12.dev0+gfd82437-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.1/dev/jwstdp-0.9.1-osx-py36.00.txt b/jwstdp/0.9.1/dev/jwstdp-0.9.1-osx-py36.00.txt new file mode 100644 index 0000000..83d9036 --- /dev/null +++ b/jwstdp/0.9.1/dev/jwstdp-0.9.1-osx-py36.00.txt @@ -0,0 +1,124 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.3.1.dev216+gbe7c59e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.1.0.dev9734+gad1b269-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-17.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36h72d3c9f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.1.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.4-py36h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.7.dev124+g49f09ff-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.1.4-py36h842514c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.27.3-py36h6ecb376_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.17.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.17.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.21.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8rc.dev47+g4ab5cfe-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.1-py36h39cdac5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.2.0-py36h5e01289_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.2.1-py36h3dda519_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.11.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.9.1.dev0+g00e5a7c-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.1.1-py36hef8c89e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.1.2-py36h6d6146d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36hf1b8295_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.1-py36h04f5b5a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.14.0-py36h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.22.0-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.1.1-py36hc90e01c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.3.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.4.dev68+gc827ca9-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.0.0-py36hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36h1555ced_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.3-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36he6521c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.2-py36ha69170d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-17.5.0-py36h51e4350_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.7-py36hfa33cec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.3.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.4-hc167b69_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36h86d2abb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.3-py36hf0bf824_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.0.0-py36h1de22e9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-38.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-1.5.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.12.dev0+gfd82437-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.30.0-py36h5eb2c71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/jwstdp/0.9.1/latest-linux b/jwstdp/0.9.1/latest-linux new file mode 100644 index 0000000..3bf8f21 --- /dev/null +++ b/jwstdp/0.9.1/latest-linux @@ -0,0 +1,135 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/asdf-1.3.1.dev216+gbe7c59e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/astropy-3.1.0.dev9734+gad1b269-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/cffi-1.11.4-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/cfitsio-3.410-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/crds-7.1.7.dev124+g49f09ff-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/cryptography-2.1.4-py35hbeb2da1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/cython-0.27.3-py35h6cdc64b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/dask-0.17.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/dask-core-0.17.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/dbus-1.12.2-hc3f9b76_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/decorator-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/distributed-1.21.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/gwcs-0.8rc.dev47+g4ab5cfe-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/imageio-2.2.0-py35hd0a6de2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/ipython-6.2.1-py35hd850d2a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/jedi-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/jwst-0.9.1.dev0+g00e5a7c-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/lxml-4.1.1-py35hf71bdeb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/matplotlib-2.1.2-py35h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/msgpack-python-0.5.1-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/numpy-1.14.0-py35h3dfced4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pandas-0.22.0-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/parso-0.1.1-py35h1b200a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pexpect-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/photutils-0.4.dev68+gc827ca9-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pillow-5.0.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pip-9.0.1-py35h7e7da9d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/psutil-5.4.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/py-1.5.2-py35hfe8c5ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pysocks-1.6.7-py35h6aefbb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/python-3.5.4-h417fded_24.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/python-dateutil-2.6.1-py35h90d5b31_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pytz-2017.3-py35hb13c558_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/scipy-1.0.0-py35hcbbe4a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/stsci.tools-3.4.12.dev0+gfd82437-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/wheel-0.30.0-py35hd3883cf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.1/latest-osx b/jwstdp/0.9.1/latest-osx new file mode 100644 index 0000000..2ef161a --- /dev/null +++ b/jwstdp/0.9.1/latest-osx @@ -0,0 +1,127 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/asdf-1.3.1.dev216+gbe7c59e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/astropy-3.1.0.dev9734+gad1b269-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/cffi-1.11.4-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/cfitsio-3.410-2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/crds-7.1.7.dev124+g49f09ff-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/cryptography-2.1.4-py35hbbb57dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/cython-0.27.3-py35h36d65b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/dask-0.17.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/dask-core-0.17.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/decorator-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/distributed-1.21.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/gwcs-0.8rc.dev47+g4ab5cfe-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/imageio-2.2.0-py35h805106e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/ipython-6.2.1-py35h9470683_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/jedi-0.11.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/jwst-0.9.1.dev0+g00e5a7c-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/lxml-4.1.1-py35hef8c89e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/matplotlib-2.1.2-py35h6d6146d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/msgpack-python-0.5.1-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/numpy-1.14.0-py35h8a80b8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pandas-0.22.0-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/parso-0.1.1-py35hbda7c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pexpect-4.3.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/photutils-0.4.dev68+gc827ca9-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pillow-5.0.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pip-9.0.1-py35h33ce766_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/psutil-5.4.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/py-1.5.2-py35h4d4d87d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pysocks-1.6.7-py35h3cfcbe1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pytest-3.3.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/python-3.5.4-he720263_23.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/python-dateutil-2.6.1-py35h10515e0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pytz-2017.3-py35heeb7564_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/setuptools-38.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/stsci.tools-3.4.12.dev0+gfd82437-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/tornado-4.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/astroconda-dev/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.1/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.2/README.md b/jwstdp/0.9.2/README.md new file mode 100644 index 0000000..ab6129f --- /dev/null +++ b/jwstdp/0.9.2/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.9.2 --file http://ssb.stsci.edu/releases/jwstdp/0.9.2/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.9.2 --file http://ssb.stsci.edu/releases/jwstdp/0.9.2/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh +$ bash Anaconda3-5.1.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.4.10-Linux-x86_64.sh +$ bash Miniconda3-4.3.31-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.9.2 --file http://ssb.stsci.edu/releases/jwstdp/0.9.2/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.9.2 +``` diff --git a/jwstdp/0.9.2/dev/jwstdp-0.9.2-linux-py35.00.txt b/jwstdp/0.9.2/dev/jwstdp-0.9.2-linux-py35.00.txt new file mode 100644 index 0000000..680689d --- /dev/null +++ b/jwstdp/0.9.2/dev/jwstdp-0.9.2-linux-py35.00.txt @@ -0,0 +1,154 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/alabaster-0.7.10-py35h6fb19ab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/asdf-1.3.1.dev282+ga5507fb-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/astropy-4.0.0.dev9901+ged3edd4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/bokeh-0.12.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/cfitsio-3.430-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/crds-7.2.1.dev22+gf4f74a2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cryptography-2.2.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/curl-7.58.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cython-0.28.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/dask-0.17.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/dask-core-0.17.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/dbus-1.12.2-hc3f9b76_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/decorator-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/distributed-1.21.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/gwcs-0.8.1a.dev21+gfac910c-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/imagesize-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/ipython-6.2.1-py35hd850d2a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/jedi-0.11.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/jwst-0.9.2.dev0+gdcdc755-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libcurl-7.58.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/lxml-4.2.1-py35h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/matplotlib-2.2.2-py35h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/mkl_fft-1.0.1-py35h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/numpy-1.14.2-py35hdbf6ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/numpydoc-0.7.0-py35he089a57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pandas-0.22.0-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/parso-0.1.1-py35h1b200a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pexpect-4.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/photutils-0.4.dev87+gc296327-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pillow-5.0.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pip-9.0.1-py35_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/psutil-5.4.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pytest-3.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/python-3.5.5-hc3d631a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/python-dateutil-2.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pytz-2018.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/qt-5.6.2-hd25b39d_14.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/scipy-1.0.0-py35hcbbe4a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/setuptools-38.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sphinx-1.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sphinxcontrib-1.0-py35hcb7efd2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sphinxcontrib-websupport-1.0.1-py35h3537809_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/stsci.tools-3.4.12.dev27+g67c4be1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/tornado-5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/typing-3.6.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/wheel-0.30.0-py35hd3883cf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.2/dev/jwstdp-0.9.2-linux-py36.00.txt b/jwstdp/0.9.2/dev/jwstdp-0.9.2-linux-py36.00.txt new file mode 100644 index 0000000..a82d302 --- /dev/null +++ b/jwstdp/0.9.2/dev/jwstdp-0.9.2-linux-py36.00.txt @@ -0,0 +1,151 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/alabaster-0.7.10-py36h306e16b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.3.1.dev282+ga5507fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev9901+ged3edd4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-17.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/babel-2.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36h49b8c8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.1.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.430-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.1.dev22+gf4f74a2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.2.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/curl-7.58.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.17.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.17.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.12.2-hc3f9b76_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.21.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/docutils-0.14-py36hb0f60f5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8.1a.dev21+gfac910c-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.1-py36h3585f63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imagesize-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.2.1-py36h88c514a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36hb52b0d5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.11.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36ha16c418_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36h006f8b5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.9.2.dev0+gdcdc755-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36h764f252_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libcurl-7.58.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.1-py36h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.2-py36h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.1-py36h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36hfeacd6b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py36h6bb024c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.14.2-py36hdbf6ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpydoc-0.7.0-py36h18f165f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.22.0-py36hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.1.1-py36h35f843b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.4.dev87+gc296327-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36h63277f8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.0.0-py36h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py36hb689045_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36h17d85b1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.3-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36h69acd42_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36h0d3125c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-17.5.0-py36h20ba746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36h0386399_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.4-hc3d631a_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-hd25b39d_14.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.0.0-py36hbf646e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-38.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18.1-py36h51ed4ed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36h372c433_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/snowballstemmer-1.2.1-py36h6febd40_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinx-1.7.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-1.0-py36h6d0f590_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sphinxcontrib-websupport-1.0.1-py36hb5cb234_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.12.dev27+g67c4be1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36h674d592_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/typing-3.6.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36hdf4376a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.30.0-py36hfd4bba0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/jwstdp/0.9.2/dev/jwstdp-0.9.2-osx-py35.00.txt b/jwstdp/0.9.2/dev/jwstdp-0.9.2-osx-py35.00.txt new file mode 100644 index 0000000..7db695b --- /dev/null +++ b/jwstdp/0.9.2/dev/jwstdp-0.9.2-osx-py35.00.txt @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libcurl-7.58.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/curl-7.58.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/cfitsio-3.430-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/python-3.5.5-hc167b69_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/alabaster-0.7.10-py35hb692fe1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/dask-core-0.17.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/decorator-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/docutils-0.14-py35hb13dbd9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/imagesize-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/lxml-4.2.1-py35h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/parso-0.1.1-py35hbda7c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/psutil-5.4.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pytz-2018.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/snowballstemmer-1.2.1-py35hbb7be01_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/sphinxcontrib-1.0-py35h3eabf46_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/tornado-5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/typing-3.6.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pexpect-4.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pillow-5.0.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/python-dateutil-2.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/setuptools-38.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/sphinxcontrib-websupport-1.0.1-py35hcb4ca16_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cryptography-2.2.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cython-0.28.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/distributed-1.21.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pytest-3.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pip-9.0.1-py35_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/sphinx-1.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/numpydoc-0.7.0-py35h296b98c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/jedi-0.11.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/ipython-6.2.1-py35h9470683_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/bokeh-0.12.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/mkl_fft-1.0.1-py35h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/numpy-1.14.2-py35ha9ae307_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pandas-0.22.0-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/dask-0.17.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/astropy-4.0.0.dev9901+ged3edd4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/asdf-1.3.1.dev282+ga5507fb-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/crds-7.2.1.dev22+gf4f74a2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/photutils-0.4.dev87+gc296327-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/stsci.tools-3.4.12.dev27+g67c4be1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/gwcs-0.8.1a.dev21+gfac910c-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/jwst-0.9.2.dev0+gdcdc755-py35_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.2/dev/jwstdp-0.9.2-osx-py36.00.txt b/jwstdp/0.9.2/dev/jwstdp-0.9.2-osx-py36.00.txt new file mode 100644 index 0000000..75d823f --- /dev/null +++ b/jwstdp/0.9.2/dev/jwstdp-0.9.2-osx-py36.00.txt @@ -0,0 +1,143 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/alabaster-0.7.10-py36h174008c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.3.1.dev282+ga5507fb-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev9901+ged3edd4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-17.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/babel-2.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36h72d3c9f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.14-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.1.18-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.430-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.1.dev22+gf4f74a2-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.2.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/curl-7.58.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.17.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.17.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.21.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/docutils-0.14-py36hbfde631_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8.1a.dev21+gfac910c-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.1-py36h39cdac5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imagesize-1.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.2.1-py36h3dda519_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.11.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.9.2.dev0+gdcdc755-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h792292d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcurl-7.58.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.1-py36h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.2-py36ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.1-py36h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py36h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36hf1b8295_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py36h04f5b5a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.14.2-py36ha9ae307_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpydoc-0.7.0-py36he54d08e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.22.0-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.1.1-py36hc90e01c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.4.dev87+gc296327-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.0.0-py36hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36_5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.3-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36he6521c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-17.5.0-py36h51e4350_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.4-hc167b69_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.0.0-py36h1de22e9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-38.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/snowballstemmer-1.2.1-py36h6c7b616_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-1.5.9-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinx-1.7.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-1.0-py36h9364dc8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sphinxcontrib-websupport-1.0.1-py36h92f4a7a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.12.dev27+g67c4be1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/typing-3.6.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.30.0-py36h5eb2c71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/jwstdp/0.9.2/latest-linux b/jwstdp/0.9.2/latest-linux new file mode 100644 index 0000000..680689d --- /dev/null +++ b/jwstdp/0.9.2/latest-linux @@ -0,0 +1,154 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/alabaster-0.7.10-py35h6fb19ab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/asdf-1.3.1.dev282+ga5507fb-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/astropy-4.0.0.dev9901+ged3edd4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/bokeh-0.12.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/cfitsio-3.430-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/crds-7.2.1.dev22+gf4f74a2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cryptography-2.2.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/curl-7.58.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cython-0.28.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/dask-0.17.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/dask-core-0.17.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/dbus-1.12.2-hc3f9b76_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/decorator-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/distributed-1.21.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/docutils-0.14-py35hd11081d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/gst-plugins-base-1.12.4-h33fb286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/gstreamer-1.12.4-hb53b477_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/gwcs-0.8.1a.dev21+gfac910c-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/imagesize-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/ipython-6.2.1-py35hd850d2a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/jedi-0.11.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/jwst-0.9.2.dev0+gdcdc755-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libcurl-7.58.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libxml2-2.9.7-h26e45fe_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/lxml-4.2.1-py35h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/matplotlib-2.2.2-py35h0e671d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/mkl_fft-1.0.1-py35h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/numpy-1.14.2-py35hdbf6ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/numpydoc-0.7.0-py35he089a57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pandas-0.22.0-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/parso-0.1.1-py35h1b200a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pexpect-4.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/photutils-0.4.dev87+gc296327-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pillow-5.0.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pip-9.0.1-py35_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/psutil-5.4.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pytest-3.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/python-3.5.5-hc3d631a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/python-dateutil-2.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pytz-2018.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/qt-5.6.2-hd25b39d_14.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/scipy-1.0.0-py35hcbbe4a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/setuptools-38.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/snowballstemmer-1.2.1-py35h5435977_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sphinx-1.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sphinxcontrib-1.0-py35hcb7efd2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sphinxcontrib-websupport-1.0.1-py35h3537809_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/sqlite-3.22.0-h1bed415_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/stsci.tools-3.4.12.dev27+g67c4be1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/tornado-5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/typing-3.6.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/wheel-0.30.0-py35hd3883cf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.2/latest-osx b/jwstdp/0.9.2/latest-osx new file mode 100644 index 0000000..7db695b --- /dev/null +++ b/jwstdp/0.9.2/latest-osx @@ -0,0 +1,146 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libcurl-7.58.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libxml2-2.9.7-hab757c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/curl-7.58.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/sqlite-3.22.0-h3efe00b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/cfitsio-3.430-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/python-3.5.5-hc167b69_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/alabaster-0.7.10-py35hb692fe1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/attrs-17.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/certifi-2018.1.18-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/dask-core-0.17.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/decorator-4.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/docutils-0.14-py35hb13dbd9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/imagesize-1.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/lxml-4.2.1-py35h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/parso-0.1.1-py35hbda7c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/psutil-5.4.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pytz-2018.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/snowballstemmer-1.2.1-py35hbb7be01_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/sortedcontainers-1.5.9-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/sphinxcontrib-1.0-py35h3eabf46_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/tornado-5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/typing-3.6.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/babel-2.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pexpect-4.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pillow-5.0.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/python-dateutil-2.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/setuptools-38.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/sphinxcontrib-websupport-1.0.1-py35hcb4ca16_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cryptography-2.2.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/cython-0.28.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/distributed-1.21.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pytest-3.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pip-9.0.1-py35_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/sphinx-1.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/numpydoc-0.7.0-py35h296b98c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/jedi-0.11.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/ipython-6.2.1-py35h9470683_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/bokeh-0.12.14-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/mkl_fft-1.0.1-py35h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/numpy-1.14.2-py35ha9ae307_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pandas-0.22.0-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/dask-0.17.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/astropy-4.0.0.dev9901+ged3edd4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/asdf-1.3.1.dev282+ga5507fb-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/crds-7.2.1.dev22+gf4f74a2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/photutils-0.4.dev87+gc296327-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/stsci.tools-3.4.12.dev27+g67c4be1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/gwcs-0.8.1a.dev21+gfac910c-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.2/astroconda-dev/osx-64/jwst-0.9.2.dev0+gdcdc755-py35_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.3/README.md b/jwstdp/0.9.3/README.md new file mode 100644 index 0000000..3ef977f --- /dev/null +++ b/jwstdp/0.9.3/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.9.3rc1 --file http://ssb.stsci.edu/releases/jwstdp/0.9.3/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.9.3rc1 --file http://ssb.stsci.edu/releases/jwstdp/0.9.3/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh +$ bash Anaconda3-5.1.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.4.10-Linux-x86_64.sh +$ bash Miniconda3-4.4.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.9.3rc1 --file http://ssb.stsci.edu/releases/jwstdp/0.9.3/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.9.3rc1 +``` diff --git a/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-linux-py35.00.txt b/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-linux-py35.00.txt new file mode 100644 index 0000000..8cf3143 --- /dev/null +++ b/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-linux-py35.00.txt @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/asdf-2.0.0rc.dev18+gc7c0c54-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/astropy-4.0.0.dev10060+ga3ece74-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/bokeh-0.12.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/crds-7.2.1.dev87+g6895a6a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cryptography-2.2.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/curl-7.59.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cython-0.28.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/dask-0.17.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/dask-core-0.17.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/gwcs-0.8.1a.dev23+gdd4c317-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/jwst-0.9.3rc1.dev0+gd795045-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libcurl-7.59.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libxml2-2.9.8-hf84eae3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/lxml-4.2.1-py35h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/matplotlib-2.2.2-py35h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/mkl_fft-1.0.1-py35h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/numpy-1.14.3-py35h14a74c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/numpy-base-1.14.3-py35hdbf6ddf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pandas-0.22.0-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/parso-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pexpect-4.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pillow-5.1.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/psutil-5.4.5-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pytest-3.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/python-3.5.5-hc3d631a_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/python-dateutil-2.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/setuptools-39.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/sortedcontainers-1.5.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/stwcs-1.4.1a.dev10+gf5c4250-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/wheel-0.31.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/xz-5.2.3-h5e939de_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-linux-py36.00.txt b/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-linux-py36.00.txt new file mode 100644 index 0000000..9270915 --- /dev/null +++ b/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-linux-py36.00.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.0rc.dev18+gc7c0c54-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10060+ga3ece74-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36h49b8c8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.1.dev87+g6895a6a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.2.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/curl-7.59.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.17.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.17.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.21.8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8.1a.dev23+gdd4c317-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.1-py36h3585f63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36hb52b0d5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36ha16c418_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36h006f8b5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.9.3rc1.dev0+gd795045-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36h764f252_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libcurl-7.59.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-hf84eae3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.1-py36h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.2-py36h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.1-py36h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36hfeacd6b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py36h6bb024c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.14.3-py36h14a74c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.14.3-py36hdbf6ddf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.22.0-py36hf484d3e_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.4.dev186+g7062489-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36h63277f8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.1.0-py36h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py36hb689045_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36h17d85b1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.5-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36h69acd42_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36h0d3125c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-17.5.0-py36h20ba746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.5-hc3d631a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-39.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36h372c433_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.1a.dev10+gf5c4250-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36h674d592_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36hdf4376a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-h5e939de_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-osx-py35.00.txt b/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-osx-py35.00.txt new file mode 100644 index 0000000..b12db22 --- /dev/null +++ b/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-osx-py35.00.txt @@ -0,0 +1,139 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/asdf-2.0.0rc.dev18+gc7c0c54-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/astropy-4.0.0.dev10060+ga3ece74-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/bokeh-0.12.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/crds-7.2.1.dev87+g6895a6a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cryptography-2.2.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/curl-7.59.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cython-0.28.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/dask-0.17.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/dask-core-0.17.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/gwcs-0.8.1a.dev23+gdd4c317-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/jwst-0.9.3rc1.dev0+gd795045-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libcurl-7.59.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libxml2-2.9.8-h2866646_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/lxml-4.2.1-py35h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/mkl_fft-1.0.1-py35h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/numpy-1.14.3-py35h9d02e6b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/numpy-base-1.14.3-py35ha9ae307_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pandas-0.22.0-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/parso-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pexpect-4.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pillow-5.1.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/psutil-5.4.5-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pytest-3.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/python-dateutil-2.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/setuptools-39.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/sortedcontainers-1.5.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/stwcs-1.4.1a.dev10+gf5c4250-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/wheel-0.31.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/xz-5.2.3-h727817e_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-osx-py36.00.txt b/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-osx-py36.00.txt new file mode 100644 index 0000000..3d5515d --- /dev/null +++ b/jwstdp/0.9.3/dev/jwstdp-0.9.3rc1-osx-py36.00.txt @@ -0,0 +1,136 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.0rc.dev18+gc7c0c54-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10060+ga3ece74-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36h72d3c9f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.15-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.2-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.1.dev87+g6895a6a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.2.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/curl-7.59.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.17.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.17.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.21.8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8.1a.dev23+gdd4c317-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.1-py36h39cdac5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.9.3rc1.dev0+gd795045-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h792292d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcurl-7.59.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-h2866646_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.1-py36h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.2-py36ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.1-py36h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py36h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36hf1b8295_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py36h04f5b5a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.14.3-py36h9d02e6b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.14.3-py36ha9ae307_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.22.0-py36h0a44026_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.4.dev186+g7062489-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.1.0-py36hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.5-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36he6521c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-17.5.0-py36h51e4350_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.5-hc167b69_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-39.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-1.5.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.1a.dev10+gf5c4250-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-h727817e_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/jwstdp/0.9.3/latest-linux b/jwstdp/0.9.3/latest-linux new file mode 100644 index 0000000..8cf3143 --- /dev/null +++ b/jwstdp/0.9.3/latest-linux @@ -0,0 +1,147 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/asdf-2.0.0rc.dev18+gc7c0c54-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/astropy-4.0.0.dev10060+ga3ece74-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/bokeh-0.12.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/crds-7.2.1.dev87+g6895a6a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cryptography-2.2.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/curl-7.59.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cython-0.28.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/dask-0.17.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/dask-core-0.17.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/gwcs-0.8.1a.dev23+gdd4c317-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/jwst-0.9.3rc1.dev0+gd795045-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libcurl-7.59.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libxml2-2.9.8-hf84eae3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/lxml-4.2.1-py35h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/matplotlib-2.2.2-py35h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/mkl_fft-1.0.1-py35h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/numpy-1.14.3-py35h14a74c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/numpy-base-1.14.3-py35hdbf6ddf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pandas-0.22.0-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/parso-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pexpect-4.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pillow-5.1.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/psutil-5.4.5-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pytest-3.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/python-3.5.5-hc3d631a_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/python-dateutil-2.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/setuptools-39.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/sortedcontainers-1.5.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/stwcs-1.4.1a.dev10+gf5c4250-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/linux-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/wheel-0.31.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/xz-5.2.3-h5e939de_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.3/latest-osx b/jwstdp/0.9.3/latest-osx new file mode 100644 index 0000000..b12db22 --- /dev/null +++ b/jwstdp/0.9.3/latest-osx @@ -0,0 +1,139 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/asdf-2.0.0rc.dev18+gc7c0c54-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/astropy-4.0.0.dev10060+ga3ece74-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/bokeh-0.12.15-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cloudpickle-0.5.2-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/crds-7.2.1.dev87+g6895a6a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cryptography-2.2.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/curl-7.59.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cython-0.28.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/dask-0.17.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/dask-core-0.17.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/gwcs-0.8.1a.dev23+gdd4c317-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/jwst-0.9.3rc1.dev0+gd795045-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libcurl-7.59.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libxml2-2.9.8-h2866646_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/lxml-4.2.1-py35h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/mkl_fft-1.0.1-py35h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/numpy-1.14.3-py35h9d02e6b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/numpy-base-1.14.3-py35ha9ae307_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pandas-0.22.0-py35h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/parso-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pexpect-4.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pillow-5.1.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/psutil-5.4.5-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pytest-3.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/python-dateutil-2.7.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/setuptools-39.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/sortedcontainers-1.5.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/stwcs-1.4.1a.dev10+gf5c4250-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/astroconda-dev/osx-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/wheel-0.31.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/xz-5.2.3-h727817e_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.3/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.4/README.md b/jwstdp/0.9.4/README.md new file mode 100644 index 0000000..faa0fec --- /dev/null +++ b/jwstdp/0.9.4/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.9.4 --file http://ssb.stsci.edu/releases/jwstdp/0.9.4/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.9.4 --file http://ssb.stsci.edu/releases/jwstdp/0.9.4/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh +$ bash Anaconda3-5.1.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.4.10-Linux-x86_64.sh +$ bash Miniconda3-4.4.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.9.4 --file http://ssb.stsci.edu/releases/jwstdp/0.9.4/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.9.4 +``` diff --git a/jwstdp/0.9.4/dev/jwstdp-0.9.4-linux-py35.00.txt b/jwstdp/0.9.4/dev/jwstdp-0.9.4-linux-py35.00.txt new file mode 100644 index 0000000..e42f042 --- /dev/null +++ b/jwstdp/0.9.4/dev/jwstdp-0.9.4-linux-py35.00.txt @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/astropy-4.0.0.dev10192+gf6ed998-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/crds-7.2.3.dev0+g3b4710b-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cryptography-2.2.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/curl-7.60.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cython-0.28.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/jwst-0.9.4.dev0+g44d8efe-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libcurl-7.60.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/lxml-4.2.1-py35h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/matplotlib-2.2.2-py35h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/mkl_fft-1.0.1-py35h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/numpy-1.14.3-py35hcd700cb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/numpy-base-1.14.3-py35h9be14a7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pandas-0.23.0-py35h637b7d7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/parso-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pexpect-4.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pillow-5.1.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/psutil-5.4.5-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pytest-3.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/setuptools-39.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/sortedcontainers-1.5.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.4/dev/jwstdp-0.9.4-linux-py36.00.txt b/jwstdp/0.9.4/dev/jwstdp-0.9.4-linux-py36.00.txt new file mode 100644 index 0000000..04abb53 --- /dev/null +++ b/jwstdp/0.9.4/dev/jwstdp-0.9.4-linux-py36.00.txt @@ -0,0 +1,145 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.0rc.dev31+g6daaa61-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10192+gf6ed998-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36h49b8c8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.3.dev0+g3b4710b-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.2.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/curl-7.60.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.21.8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev1+g6da156a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.1-py36h3585f63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36hb52b0d5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36ha16c418_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36h006f8b5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.9.4.dev0+g44d8efe-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36h764f252_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libcurl-7.60.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.1-py36h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.2-py36h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_fft-1.0.1-py36h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl_random-1.0.1-py36h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36hfeacd6b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py36h6bb024c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.14.3-py36hcd700cb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.14.3-py36h9be14a7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.0-py36h637b7d7_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.4.dev186+g7062489-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36h63277f8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.1.0-py36h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py36hb689045_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36h17d85b1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.5-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36h69acd42_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36h0d3125c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.5-hc3d631a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-39.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36h372c433_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.1a.dev12+g8f5e42a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36h674d592_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36hdf4376a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/jwstdp/0.9.4/dev/jwstdp-0.9.4-osx-py35.00.txt b/jwstdp/0.9.4/dev/jwstdp-0.9.4-osx-py35.00.txt new file mode 100644 index 0000000..72e534c --- /dev/null +++ b/jwstdp/0.9.4/dev/jwstdp-0.9.4-osx-py35.00.txt @@ -0,0 +1,138 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/astropy-4.0.0.dev10192+gf6ed998-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/crds-7.2.3.dev0+g3b4710b-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cryptography-2.2.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/curl-7.60.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cython-0.28.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/jwst-0.9.4.dev0+g44d8efe-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libcurl-7.60.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libopenblas-0.2.20-hdc02c5d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/lxml-4.2.1-py35h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/numpy-1.14.3-py35he6379a5_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/numpy-base-1.14.3-py35h7ef55bc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pandas-0.23.0-py35h1702cab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/parso-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pexpect-4.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pillow-5.1.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/psutil-5.4.5-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pytest-3.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/setuptools-39.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/sortedcontainers-1.5.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.4/dev/jwstdp-0.9.4-osx-py36.00.txt b/jwstdp/0.9.4/dev/jwstdp-0.9.4-osx-py36.00.txt new file mode 100644 index 0000000..5b4d643 --- /dev/null +++ b/jwstdp/0.9.4/dev/jwstdp-0.9.4-osx-py36.00.txt @@ -0,0 +1,137 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.0rc.dev31+g6daaa61-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10192+gf6ed998-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36h72d3c9f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.3.dev0+g3b4710b-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.2.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/curl-7.60.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.21.8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev1+g6da156a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.1-py36h39cdac5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.9.4.dev0+g44d8efe-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h792292d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcurl-7.60.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.1-py36h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.2-py36ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_fft-1.0.1-py36h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl_random-1.0.1-py36h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36hf1b8295_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py36h04f5b5a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.14.3-py36h9bb19eb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.14.3-py36h479e554_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.0-py36h1702cab_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.5.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.4.dev186+g7062489-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.1.0-py36hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.5-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36he6521c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.5.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.5-hc167b69_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-39.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-1.5.10-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.1a.dev12+g8f5e42a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/jwstdp/0.9.4/latest-linux b/jwstdp/0.9.4/latest-linux new file mode 100644 index 0000000..e42f042 --- /dev/null +++ b/jwstdp/0.9.4/latest-linux @@ -0,0 +1,148 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/astropy-4.0.0.dev10192+gf6ed998-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/crds-7.2.3.dev0+g3b4710b-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cryptography-2.2.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/curl-7.60.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cython-0.28.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/jwst-0.9.4.dev0+g44d8efe-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libcurl-7.60.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/lxml-4.2.1-py35h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/matplotlib-2.2.2-py35h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/mkl_fft-1.0.1-py35h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/numpy-1.14.3-py35hcd700cb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/numpy-base-1.14.3-py35h9be14a7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pandas-0.23.0-py35h637b7d7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/parso-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pexpect-4.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pillow-5.1.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/psutil-5.4.5-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pytest-3.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/setuptools-39.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/sortedcontainers-1.5.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/linux-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.4/latest-osx b/jwstdp/0.9.4/latest-osx new file mode 100644 index 0000000..72e534c --- /dev/null +++ b/jwstdp/0.9.4/latest-osx @@ -0,0 +1,138 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/astropy-4.0.0.dev10192+gf6ed998-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/crds-7.2.3.dev0+g3b4710b-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cryptography-2.2.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/curl-7.60.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cython-0.28.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/intel-openmp-2018.0.0-8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/jwst-0.9.4.dev0+g44d8efe-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libcurl-7.60.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libopenblas-0.2.20-hdc02c5d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/lxml-4.2.1-py35h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/mkl-2018.0.2-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/more-itertools-4.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/numpy-1.14.3-py35he6379a5_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/numpy-base-1.14.3-py35h7ef55bc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pandas-0.23.0-py35h1702cab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/parso-0.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pexpect-4.5.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pillow-5.1.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/psutil-5.4.5-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pytest-3.5.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/setuptools-39.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/sortedcontainers-1.5.10-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/astroconda-dev/osx-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.4/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.5/README.md b/jwstdp/0.9.5/README.md new file mode 100644 index 0000000..8df1870 --- /dev/null +++ b/jwstdp/0.9.5/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.9.5 --file http://ssb.stsci.edu/releases/jwstdp/0.9.5/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.9.5 --file http://ssb.stsci.edu/releases/jwstdp/0.9.5/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh +$ bash Anaconda3-5.1.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.4.10-Linux-x86_64.sh +$ bash Miniconda3-4.4.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.9.5 --file http://ssb.stsci.edu/releases/jwstdp/0.9.5/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.9.5 +``` diff --git a/jwstdp/0.9.5/dev/jwstdp-0.9.5-linux-py35.00.txt b/jwstdp/0.9.5/dev/jwstdp-0.9.5-linux-py35.00.txt new file mode 100644 index 0000000..7e0bfc0 --- /dev/null +++ b/jwstdp/0.9.5/dev/jwstdp-0.9.5-linux-py35.00.txt @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/astropy-4.0.0.dev10221+ge074d3f-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/crds-7.2.4.dev0+g95f65c8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cryptography-2.2.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/curl-7.60.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cython-0.28.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/h5py-2.8.0-py35ha1f6525_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/jwst-0.9.5.dev0+g30caf6d-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libcurl-7.60.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/lxml-4.2.1-py35h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/matplotlib-2.2.2-py35h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/mkl_fft-1.0.1-py35h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/numpy-1.14.3-py35hcd700cb_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/numpy-base-1.14.3-py35hdbf6ddf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pandas-0.23.0-py35h637b7d7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/parso-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pillow-5.1.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/psutil-5.4.5-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pytest-3.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/sortedcontainers-2.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.5/dev/jwstdp-0.9.5-linux-py36.00.txt b/jwstdp/0.9.5/dev/jwstdp-0.9.5-linux-py36.00.txt new file mode 100644 index 0000000..7db221c --- /dev/null +++ b/jwstdp/0.9.5/dev/jwstdp-0.9.5-linux-py36.00.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libcurl-7.60.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/curl-7.60.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.5-hc3d631a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36h49b8c8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.4.16-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36hb52b0d5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36h764f252_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.1-py36h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36hfeacd6b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py36h6bb024c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.14.3-py36hdbf6ddf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36h63277f8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py36hb689045_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.5-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36h69acd42_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://repo.anaconda.com/pkgs/free/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36h372c433_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.0.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36hdf4376a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.14.3-py36h28100ab_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.1.0-py36h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-39.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36h674d592_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.2.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.3-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.21.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py36ha1f6525_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36ha16c418_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36h006f8b5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.2-py36h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.0-py36h637b7d7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36h0d3125c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.6.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hfc37229_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36h17d85b1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.1-py36h14c3975_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10221+ge074d3f-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.0rc.dev31+g6daaa61-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.4.dev0+g95f65c8-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.4.dev186+g7062489-py36_4.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev1+g6da156a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.1a.dev12+g8f5e42a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.9.5.dev0+g30caf6d-py36_2.tar.bz2 diff --git a/jwstdp/0.9.5/dev/jwstdp-0.9.5-osx-py35.00.txt b/jwstdp/0.9.5/dev/jwstdp-0.9.5-osx-py35.00.txt new file mode 100644 index 0000000..5db6e3b --- /dev/null +++ b/jwstdp/0.9.5/dev/jwstdp-0.9.5-osx-py35.00.txt @@ -0,0 +1,141 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/astropy-4.0.0.dev10221+ge074d3f-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/crds-7.2.4.dev0+g95f65c8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cryptography-2.2.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/curl-7.60.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cython-0.28.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/h5py-2.8.0-py35ha8ecd60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/jwst-0.9.5.dev0+g30caf6d-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libcurl-7.60.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libopenblas-0.2.20-hdc02c5d_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/lxml-4.2.1-py35h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/mkl_fft-1.0.1-py35h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/numpy-1.14.3-py35h9bb19eb_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/numpy-base-1.14.3-py35h7ef55bc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pandas-0.23.0-py35h1702cab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/parso-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pillow-5.1.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/psutil-5.4.5-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pytest-3.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/sortedcontainers-2.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.5/dev/jwstdp-0.9.5-osx-py36.00.txt b/jwstdp/0.9.5/dev/jwstdp-0.9.5-osx-py36.00.txt new file mode 100644 index 0000000..e05a58a --- /dev/null +++ b/jwstdp/0.9.5/dev/jwstdp-0.9.5-osx-py36.00.txt @@ -0,0 +1,136 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.0rc.dev31+g6daaa61-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10221+ge074d3f-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36h72d3c9f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.4.dev0+g95f65c8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.2.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/curl-7.60.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.3-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.21.8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev1+g6da156a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py36ha8ecd60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.9.5.dev0+g30caf6d-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h792292d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcurl-7.60.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.1-py36h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.2-py36ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36hf1b8295_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py36h04f5b5a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.14.3-py36he6379a5_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.14.3-py36ha9ae307_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.0-py36h1702cab_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.4.dev186+g7062489-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.1.0-py36hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.5-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36he6521c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.6.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.5-hc167b69_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-39.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.1a.dev12+g8f5e42a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/jwstdp/0.9.5/latest-linux b/jwstdp/0.9.5/latest-linux new file mode 100644 index 0000000..7e0bfc0 --- /dev/null +++ b/jwstdp/0.9.5/latest-linux @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/astropy-4.0.0.dev10221+ge074d3f-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/crds-7.2.4.dev0+g95f65c8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cryptography-2.2.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/curl-7.60.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cython-0.28.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/h5py-2.8.0-py35ha1f6525_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/jwst-0.9.5.dev0+g30caf6d-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libcurl-7.60.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/lxml-4.2.1-py35h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/matplotlib-2.2.2-py35h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/mkl_fft-1.0.1-py35h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/numpy-1.14.3-py35hcd700cb_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/numpy-base-1.14.3-py35hdbf6ddf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pandas-0.23.0-py35h637b7d7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/parso-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pillow-5.1.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/psutil-5.4.5-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pytest-3.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/sortedcontainers-2.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/linux-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.5/latest-osx b/jwstdp/0.9.5/latest-osx new file mode 100644 index 0000000..5db6e3b --- /dev/null +++ b/jwstdp/0.9.5/latest-osx @@ -0,0 +1,141 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/astropy-4.0.0.dev10221+ge074d3f-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/crds-7.2.4.dev0+g95f65c8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cryptography-2.2.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/curl-7.60.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cython-0.28.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/h5py-2.8.0-py35ha8ecd60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/jwst-0.9.5.dev0+g30caf6d-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libcurl-7.60.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libopenblas-0.2.20-hdc02c5d_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/lxml-4.2.1-py35h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/mkl_fft-1.0.1-py35h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/numpy-1.14.3-py35h9bb19eb_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/numpy-base-1.14.3-py35h7ef55bc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pandas-0.23.0-py35h1702cab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/parso-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pillow-5.1.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/psutil-5.4.5-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pytest-3.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/sortedcontainers-2.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/astroconda-dev/osx-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.5/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.6/README.md b/jwstdp/0.9.6/README.md new file mode 100644 index 0000000..6bb3ef0 --- /dev/null +++ b/jwstdp/0.9.6/README.md @@ -0,0 +1,54 @@ + +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.9.6 --file http://ssb.stsci.edu/releases/jwstdp/0.9.6/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.9.6 --file http://ssb.stsci.edu/releases/jwstdp/0.9.6/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh +$ bash Anaconda3-5.1.0-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.4.10-Linux-x86_64.sh +$ bash Miniconda3-4.4.10-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.9.6 --file http://ssb.stsci.edu/releases/jwstdp/0.9.6/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.9.6 +``` diff --git a/jwstdp/0.9.6/dev/jwstdp-0.9.6-linux-py35.00.txt b/jwstdp/0.9.6/dev/jwstdp-0.9.6-linux-py35.00.txt new file mode 100644 index 0000000..374b337 --- /dev/null +++ b/jwstdp/0.9.6/dev/jwstdp-0.9.6-linux-py35.00.txt @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/astropy-4.0.0.dev10242+gb99bf74-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/crds-7.2.4.dev0+g95f65c8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cryptography-2.2.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/curl-7.60.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cython-0.28.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/h5py-2.8.0-py35ha1f6525_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/jwst-0.9.6.dev0+g7f34b46-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libcurl-7.60.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/lxml-4.2.1-py35h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/matplotlib-2.2.2-py35h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/mkl_fft-1.0.1-py35h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/numpy-1.14.3-py35hcd700cb_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/numpy-base-1.14.3-py35hdbf6ddf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pandas-0.23.0-py35h637b7d7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/parso-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pillow-5.1.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/psutil-5.4.5-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pytest-3.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/sortedcontainers-2.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.6/dev/jwstdp-0.9.6-linux-py36.00.txt b/jwstdp/0.9.6/dev/jwstdp-0.9.6-linux-py36.00.txt new file mode 100644 index 0000000..dd2162b --- /dev/null +++ b/jwstdp/0.9.6/dev/jwstdp-0.9.6-linux-py36.00.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-2.0.0rc.dev31+g6daaa61-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-4.0.0.dev10242+gb99bf74-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36h49b8c8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.5-py36h9745a5d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.2.4.dev0+g95f65c8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.2.2-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/curl-7.60.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.28.3-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cytoolz-0.9.0.1-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.21.8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.10a.dev1+g6da156a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.8.0-py36ha1f6525_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36hb52b0d5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.12.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36ha16c418_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36h006f8b5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.9.6.dev0+g7f34b46-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/kiwisolver-1.0.1-py36h764f252_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libcurl-7.60.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.2.1-py36h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.2.2-py36h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/more-itertools-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36hfeacd6b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.5.6-py36h6bb024c_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.14.3-py36h28100ab_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-base-1.14.3-py36hdbf6ddf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.23.0-py36h637b7d7_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-0.4.dev186+g7062489-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36h63277f8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-5.1.0-py36h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py36hb689045_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36h17d85b1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.5-py36h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36h69acd42_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36h0d3125c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.9.2-py36h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.6.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.5-hc3d631a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2018.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.1-py36h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.1.0-py36hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-39.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.19.8-py36hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36h372c433_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-2.0.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.4.1a.dev12+g8f5e42a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-5.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36h674d592_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36hdf4376a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 diff --git a/jwstdp/0.9.6/dev/jwstdp-0.9.6-osx-py35.00.txt b/jwstdp/0.9.6/dev/jwstdp-0.9.6-osx-py35.00.txt new file mode 100644 index 0000000..f44c3ee --- /dev/null +++ b/jwstdp/0.9.6/dev/jwstdp-0.9.6-osx-py35.00.txt @@ -0,0 +1,141 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/astropy-4.0.0.dev10242+gb99bf74-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/crds-7.2.4.dev0+g95f65c8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cryptography-2.2.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/curl-7.60.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cython-0.28.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/h5py-2.8.0-py35ha8ecd60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/jwst-0.9.6.dev0+g7f34b46-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libcurl-7.60.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/lxml-4.2.1-py35h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/mkl_fft-1.0.1-py35h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/numpy-1.14.3-py35h9bb19eb_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/numpy-base-1.14.3-py35ha9ae307_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pandas-0.23.0-py35h1702cab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/parso-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pillow-5.1.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/psutil-5.4.5-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pytest-3.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/sortedcontainers-2.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.6/dev/jwstdp-0.9.6-osx-py36.00.txt b/jwstdp/0.9.6/dev/jwstdp-0.9.6-osx-py36.00.txt new file mode 100644 index 0000000..b9f28e0 --- /dev/null +++ b/jwstdp/0.9.6/dev/jwstdp-0.9.6-osx-py36.00.txt @@ -0,0 +1,136 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-2.0.0rc.dev31+g6daaa61-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.24.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-4.0.0.dev10242+gb99bf74-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/atomicwrites-1.1.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-18.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/backcall-0.1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36h72d3c9f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2018.4.16-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.5-py36h342bebf_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.2.4.dev0+g95f65c8-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.2.2-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/curl-7.60.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.28.3-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cytoolz-0.9.0.1-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.17.5-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.21.8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.10a.dev1+g6da156a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.8.0-py36ha8ecd60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.3.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.12.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-2.7.dev0+ge01a35e-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.9.6.dev0+g7f34b46-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/kiwisolver-1.0.1-py36h792292d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcurl-7.60.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.2.1-py36h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.2.2-py36ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/more-itertools-4.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36hf1b8295_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.5.6-py36h04f5b5a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.14.3-py36he6379a5_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-base-1.14.3-py36ha9ae307_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.45.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/packaging-17.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.23.0-py36h1702cab_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.2.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.6.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-0.4.dev186+g7062489-py36_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-5.1.0-py36hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-10.0.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.5-py36h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36he6521c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-18.0.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.6.0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.5-hc167b69_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.7.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2018.4-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.1-py36h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.1.0-py36hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-39.2.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-2.0.3-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py36_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.4.1a.dev12+g8f5e42a-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.9.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-5.0.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev2+g803ce78-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.31.1-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 diff --git a/jwstdp/0.9.6/latest-linux b/jwstdp/0.9.6/latest-linux new file mode 100644 index 0000000..374b337 --- /dev/null +++ b/jwstdp/0.9.6/latest-linux @@ -0,0 +1,149 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/astropy-4.0.0.dev10242+gb99bf74-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cffi-1.11.5-py35h9745a5d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/crds-7.2.4.dev0+g95f65c8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cryptography-2.2.2-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/curl-7.60.0-h84994c4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cython-0.28.3-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/cytoolz-0.9.0.1-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/dbus-1.13.2-h714fa37_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/fontconfig-2.12.6-h49f89f6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/glib-2.56.1-h000015b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/gst-plugins-base-1.14.0-hbbd80ab_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/gstreamer-1.14.0-hb453b48_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/h5py-2.8.0-py35ha1f6525_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/hdf5-1.10.2-hba1933b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/jwst-0.9.6.dev0+g7f34b46-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/kiwisolver-1.0.1-py35hcb1117a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libcurl-7.60.0-h1ad7b7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libedit-3.1.20170329-h6b74fdf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libgcc-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libgfortran-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libpng-1.6.34-hb9fc6fc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libssh2-1.8.0-h9cfc8f7_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libstdcxx-ng-7.2.0-hdf63c60_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libtiff-4.0.9-he85c1e1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libxcb-1.13-h1bed415_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libxml2-2.9.8-h26e45fe_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/libxslt-1.1.32-h1312cb7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/lxml-4.2.1-py35h23eabaa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/matplotlib-2.2.2-py35h0e671d2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/mkl_fft-1.0.1-py35h3010b51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/mkl_random-1.0.1-py35h629b387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/msgpack-python-0.5.6-py35h6bb024c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/ncurses-6.1-hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/numpy-1.14.3-py35hcd700cb_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/numpy-base-1.14.3-py35hdbf6ddf_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/openssl-1.0.2o-h20670df_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pandas-0.23.0-py35h637b7d7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/parso-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pcre-8.42-h439df22_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pillow-5.1.0-py35h3deb7b8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/psutil-5.4.5-py35h14c3975_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pyqt-5.9.2-py35h751905a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pytest-3.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/python-3.5.5-hc3d631a_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/qt-5.9.5-h7e424d6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/scikit-image-0.13.1-py35h14c3975_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/scipy-1.1.0-py35hfc37229_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/sip-4.19.8-py35hf484d3e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/sortedcontainers-2.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/sqlite-3.23.1-he433501_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/linux-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/xz-5.2.4-h14c3975_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.6/latest-osx b/jwstdp/0.9.6/latest-osx new file mode 100644 index 0000000..f44c3ee --- /dev/null +++ b/jwstdp/0.9.6/latest-osx @@ -0,0 +1,141 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/asdf-2.0.0rc.dev31+g6daaa61-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/asn1crypto-0.24.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/astropy-4.0.0.dev10242+gb99bf74-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/atomicwrites-1.1.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/attrs-18.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/backcall-0.1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/blas-1.0-mkl.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/bokeh-0.12.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/ca-certificates-2018.03.07-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/certifi-2018.4.16-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cffi-1.11.5-py35h342bebf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/cfitsio-3.440-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cloudpickle-0.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/crds-7.2.4.dev0+g95f65c8-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cryptography-2.2.2-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/curl-7.60.0-ha441bb4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cython-0.28.3-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/cytoolz-0.9.0.1-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/dask-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/dask-core-0.17.5-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/decorator-4.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/distributed-1.21.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/fitsverify-4.18-5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/gwcs-0.10a.dev1+g6da156a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/h5py-2.8.0-py35ha8ecd60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/hdf5-1.10.2-hfa1e0ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/heapdict-1.0.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/imageio-2.3.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/intel-openmp-2018.0.3-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/ipython-6.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/jedi-0.12.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/jplephem-2.7.dev0+ge01a35e-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/jwst-0.9.6.dev0+g7f34b46-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/kiwisolver-1.0.1-py35h219a9d8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libcurl-7.60.0-hf30b1f0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libedit-3.1.20170329-hb402a30_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libpng-1.6.34-he12f830_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libssh2-1.8.0-h322a93b_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libtiff-4.0.9-hcb84e12_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libxml2-2.9.8-hab757c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/libxslt-1.1.32-hb819dd2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/lxml-4.2.1-py35h7166777_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/matplotlib-2.2.2-py35ha7267d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/mkl-2018.0.3-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/mkl_fft-1.0.1-py35h917ab60_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/mkl_random-1.0.1-py35h78cc56f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/more-itertools-4.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/msgpack-python-0.5.6-py35h04f5b5a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/namedlist-1.7-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/ncurses-6.1-h0a44026_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/networkx-2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/numpy-1.14.3-py35h9bb19eb_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/numpy-base-1.14.3-py35ha9ae307_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/olefile-0.45.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/openssl-1.0.2o-h26aff7b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/packaging-17.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pandas-0.23.0-py35h1702cab_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/parso-0.2.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pexpect-4.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/photutils-0.4.dev186+g7062489-py35_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pillow-5.1.0-py35hfcce615_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pip-10.0.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/psutil-5.4.5-py35h1de35cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/py-1.5.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/pymssql-2.1.3-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pyopenssl-18.0.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pysocks-1.6.8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pytest-3.6.0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/python-3.5.5-h0a44026_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/python-dateutil-2.7.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pytz-2018.4-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/scikit-image-0.13.1-py35h1de35cc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/scipy-1.1.0-py35hcaad992_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/setuptools-39.2.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/simplegeneric-0.8.1-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/sortedcontainers-2.0.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/spherical-geometry-1.2.1.dev5+g5c24671-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/sqlite-3.23.1-hf1716c9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/stsci.image-2.3.0.dev0+g720cb3a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/stsci.imagestats-1.4.2.dev0+g59e0e47-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/stsci.stimage-0.2.2.dev0+g7049ddc-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/stsci.tools-3.4.12.dev33+g349cb3c-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/stwcs-1.4.1a.dev12+g8f5e42a-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/toolz-0.9.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/tornado-5.0.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/astroconda-dev/osx-64/verhawk-0.0.2.dev2+g803ce78-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/wheel-0.31.1-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/xz-5.2.4-h1de35cc_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.6/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.x/README.md b/jwstdp/0.9.x/README.md new file mode 100644 index 0000000..fa510e6 --- /dev/null +++ b/jwstdp/0.9.x/README.md @@ -0,0 +1,53 @@ +# Installing + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP release. The method described here allows for multiple, entirely segregated, pipeline installations. + +For existing Anaconda3 or Miniconda3 installations: + +``` +$ conda create -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.x/latest-linux +``` + +As bugfixes are announced your current pipeline software may be updated by issuing the command: + +``` +$ conda update -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.x/latest-linux +``` + +# Installing From Scratch + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Anaconda:** + +``` +$ wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh +$ bash Anaconda3-5.0.1-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` + +**For Miniconda (if preferred):** + +``` +$ wget https://repo.continuum.io/miniconda/Miniconda3-4.3.30-Linux-x86_64.sh +$ bash Miniconda3-4.3.30-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +## Install the pipeline + +``` +$ conda create -n jwstdp-0.9.0 --file http://ssb.stsci.edu/releases/jwstdp/0.9.x/latest-linux +``` + +## Enter a BASH shell + +``` +$ bash +``` + +## Activate the pipeline environment + +``` +$ source activate jwstdp-0.9.0 +``` diff --git a/jwstdp/0.9.x/dev/jwst-0.9.0-linux-py35.00.txt b/jwstdp/0.9.x/dev/jwst-0.9.0-linux-py35.00.txt new file mode 100644 index 0000000..8dda39c --- /dev/null +++ b/jwstdp/0.9.x/dev/jwst-0.9.0-linux-py35.00.txt @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/asdf-1.3.1.dev124-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/asn1crypto-0.23.0-py35h4ab26a5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/astropy-3.0.dev9235-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/attrs-17.3.0-py35h20e33bf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/certifi-2017.11.5-py35h9749603_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/cffi-1.11.2-py35hc7b2db7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/cloudpickle-0.5.2-py35hbe86bc5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/coverage-4.4.2-py35h8fc71f1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/crds-7.1.7.dev44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/cryptography-2.1.4-py35hbeb2da1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/cython-0.27.3-py35h6cdc64b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/dask-0.16.0-py35hcb8ecc8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/dask-core-0.16.0-py35hfc66869_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/dbus-1.10.22-h3b5a359_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/decorator-4.1.2-py35h3a268aa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/drizzlepac-2.1.20.dev8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/gst-plugins-base-1.12.2-he3457e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/gstreamer-1.12.2-h4f93127_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/gwcs-0.8rc.dev33-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/heapdict-1.0.0-py35h51e6c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/hypothesis-3.38.5-py35h785bf34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/imageio-2.2.0-py35hd0a6de2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/ipython-6.2.1-py35hd850d2a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/jedi-0.11.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/jwst-0.9.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libpng-1.6.32-hbd3595f_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libxml2-2.9.4-h2e8b1d7_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libxslt-1.1.29-h78d5cac_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/lxml-4.1.1-py35ha19ceee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/matplotlib-2.1.1-py35ha26af80_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/msgpack-python-0.4.8-py35h783f4c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/numpy-1.12.1-py35hca0bb5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/olefile-0.44-py35h2c86149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pandas-0.21.1-py35h20b78c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/parso-0.1.1-py35h1b200a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pexpect-4.3.0-py35hf410859_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/photutils-v0.4.dev29-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pillow-4.3.0-py35h550890c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pip-9.0.1-py35h7e7da9d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/psutil-5.4.1-py35h2e39a06_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/py-1.5.2-py35hfe8c5ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pympler-0.5-py35hc09b5c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pysocks-1.6.7-py35h6aefbb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pytest-3.3.0-py35h5c08cda_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/python-3.5.4-h417fded_24.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/python-dateutil-2.6.1-py35h90d5b31_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pytz-2017.3-py35hb13c558_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/scikit-image-0.13.0-py35h3573165_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/scipy-1.0.0-py35hcbbe4a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/setuptools-36.5.0-py35ha8c1747_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/simplegeneric-0.8.1-py35h2ec4104_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/sortedcontainers-1.5.7-py35h683703c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/sqlite-3.20.1-hb898158_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.tools-3.4.11.dev6-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stwcs-1.3.2.dev8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/toolz-0.8.2-py35h90f1797_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/tornado-4.5.2-py35hf879e1d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/wheel-0.30.0-py35hd3883cf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/linux-64/zope-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/zope.interface-4.4.3-py35h9cef842_0.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.x/dev/jwst-0.9.0-linux-py36.00.txt b/jwstdp/0.9.x/dev/jwst-0.9.0-linux-py36.00.txt new file mode 100644 index 0000000..af1560a --- /dev/null +++ b/jwstdp/0.9.x/dev/jwst-0.9.0-linux-py36.00.txt @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/linux-64/appdirs-1.4.0-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/asdf-1.3.1.dev124-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/asn1crypto-0.23.0-py36h4639342_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/astropy-3.0.dev9235-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/attrs-17.3.0-py36h5ab58ff_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/beautifulsoup4-4.6.0-py36h49b8c8c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/certifi-2017.11.5-py36hf29ccca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cffi-1.11.2-py36h2825082_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/chardet-3.0.4-py36h0f667ec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/click-6.7-py36h5253387_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cloudpickle-0.5.2-py36h84cdd9c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/coverage-4.4.2-py36hca7c4c5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/crds-7.1.7.dev44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cryptography-2.1.4-py36hd09be54_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cycler-0.10.0-py36h93f1223_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/cython-0.27.3-py36h1860423_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-0.16.0-py36h73d177f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dask-core-0.16.0-py36ha827fd6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/dbus-1.10.22-h3b5a359_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/decorator-4.1.2-py36hd076ac8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/distributed-1.20.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/drizzlepac-2.1.20.dev8-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gst-plugins-base-1.12.2-he3457e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/gstreamer-1.12.2-h4f93127_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/gwcs-0.8rc.dev33-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/h5py-2.7.1-py36h3585f63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/heapdict-1.0.0-py36h79797d7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/hypothesis-3.38.5-py36h196a6cc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/idna-2.6-py36h82fb2a8_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/imageio-2.2.0-py36he555465_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython-6.2.1-py36h88c514a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ipython_genutils-0.2.0-py36hb52b0d5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jedi-0.11.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jinja2-2.10-py36ha16c418_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/jsonschema-2.6.0-py36h006f8b5_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/jwst-0.9.0.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libpng-1.6.32-hbd3595f_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxml2-2.9.4-h2e8b1d7_6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/libxslt-1.1.29-h78d5cac_6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/locket-0.2.0-py36h787c0ad_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/lxml-4.1.1-py36h4d89739_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/markupsafe-1.0-py36hd9260cd_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/matplotlib-2.1.1-py36ha26af80_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/mpmath-1.0.0-py36hfeacd6b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/msgpack-python-0.4.8-py36hec4c5d1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/networkx-2.0-py36h7e96fb8_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/nose-1.3.7-py36hcdf7029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/numpy-1.12.1-py36he24570b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/olefile-0.44-py36h79f9f78_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pandas-0.21.1-py36h20b78c2_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/parso-0.1.1-py36h35f843b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/partd-0.3.8-py36h36fd896_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pexpect-4.3.0-py36h673ed17_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/photutils-v0.4.dev29-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pickleshare-0.7.4-py36h63277f8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pillow-4.3.0-py36h6f462bf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pip-9.0.1-py36h6c6f9ce_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pluggy-0.6.0-py36hb689045_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/prompt_toolkit-1.0.15-py36h17d85b1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/psutil-5.4.1-py36hecd8e42_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/ptyprocess-0.5.2-py36h69acd42_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/py-1.5.2-py36h29bf505_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pycparser-2.18-py36hf9f622e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pygments-2.2.0-py36h0d3125c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pympler-0.5-py36h6b12e4d_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyopenssl-17.5.0-py36h20ba746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyparsing-2.2.0-py36hee85983_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyqt-5.6.0-py36h0386399_5.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pysocks-1.6.7-py36hd97a5b1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytest-3.3.0-py36h23ce9bc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-3.6.4-hc3d631a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/python-dateutil-2.6.1-py36h88d3b88_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pytz-2017.3-py36h63b9c63_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pywavelets-0.5.2-py36he602eb0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/pyyaml-3.12-py36hafb9ca4_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/requests-2.18.4-py36he2e5f8d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scikit-image-0.13.0-py36had3c07a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/scipy-1.0.0-py36hbf646e7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/setuptools-36.5.0-py36he42e2e1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/simplegeneric-0.8.1-py36h2cb9092_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sip-4.18.1-py36h51ed4ed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/six-1.11.0-py36h372c433_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sortedcontainers-1.5.7-py36hdf89491_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/sqlite-3.20.1-hb898158_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stsci.tools-3.4.11.dev6-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/stwcs-1.3.2.dev8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tblib-1.3.2-py36h34cf8b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/toolz-0.8.2-py36h81f2dff_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/tornado-4.5.2-py36h1283b2a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/traitlets-4.3.2-py36h674d592_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/urllib3-1.22-py36hbe7ace6_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/linux-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wcwidth-0.1.7-py36hdf4376a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/wheel-0.30.0-py36hfd4bba0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zict-0.1.3-py36h3a3bf81_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zope-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/linux-64/zope.interface-4.4.3-py36h0ccbf34_0.tar.bz2 diff --git a/jwstdp/0.9.x/dev/jwst-0.9.0-osx-py35.00.txt b/jwstdp/0.9.x/dev/jwst-0.9.0-osx-py35.00.txt new file mode 100644 index 0000000..632dc64 --- /dev/null +++ b/jwstdp/0.9.x/dev/jwst-0.9.0-osx-py35.00.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/asdf-1.3.1.dev124-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/asn1crypto-0.23.0-py35ha0e154b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/astropy-3.0.dev9235-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/attrs-17.3.0-py35hc219a11_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/certifi-2017.11.5-py35hd00889a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/cffi-1.11.2-py35h5806a83_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/cloudpickle-0.5.2-py35h61e9bcc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/coverage-4.4.2-py35h36907ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/crds-7.1.7.dev44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/cryptography-2.1.4-py35hbbb57dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/cython-0.27.3-py35h36d65b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/dask-0.16.0-py35h14d4d8d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/dask-core-0.16.0-py35h83ab50f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/decorator-4.1.2-py35hf37c5b3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/drizzlepac-2.1.20.dev8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/gwcs-0.8rc.dev33-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/heapdict-1.0.0-py35h86051b3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/hypothesis-3.38.5-py35h843401b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/imageio-2.2.0-py35h805106e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/ipython-6.2.1-py35h9470683_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/jedi-0.11.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/jwst-0.9.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libpng-1.6.32-hd1e8b91_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libxml2-2.9.4-hf05c021_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libxslt-1.1.29-hc208041_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/lxml-4.1.1-py35ha60bdb6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/matplotlib-2.1.1-py35h2fb3e9e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/msgpack-python-0.4.8-py35h2751e37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/networkx-2.0-py35hb193ae4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/nose-1.3.7-py35h9ce1e3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/numpy-1.12.1-py35h655160a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/olefile-0.44-py35h1f523c6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pandas-0.21.1-py35h2c08c6b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/parso-0.1.1-py35hbda7c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pexpect-4.3.0-py35h97d68c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/photutils-v0.4.dev29-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pillow-4.3.0-py35h4107478_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pip-9.0.1-py35h33ce766_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/psutil-5.4.1-py35h02a2b6c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/py-1.5.2-py35h4d4d87d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pympler-0.5-py35hf41ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pysocks-1.6.7-py35h3cfcbe1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pytest-3.3.0-py35hfa6e833_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/python-3.5.4-he720263_23.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/python-dateutil-2.6.1-py35h10515e0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pytz-2017.3-py35heeb7564_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/scikit-image-0.13.0-py35hf7e7ad6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/setuptools-36.5.0-py35h52cde6a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/simplegeneric-0.8.1-py35h0a3d746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/sortedcontainers-1.5.7-py35h53913a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/sqlite-3.20.1-h7e4c145_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.tools-3.4.11.dev6-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stwcs-1.3.2.dev8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/toolz-0.8.2-py35h9767fb5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/tornado-4.5.2-py35h4099233_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/osx-64/zope-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/zope.interface-4.4.3-py35hdbc5dd8_0.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.x/dev/jwst-0.9.0-osx-py36.00.txt b/jwstdp/0.9.x/dev/jwst-0.9.0-osx-py36.00.txt new file mode 100644 index 0000000..8504642 --- /dev/null +++ b/jwstdp/0.9.x/dev/jwst-0.9.0-osx-py36.00.txt @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +http://ssb.stsci.edu/astroconda-pipeline/osx-64/appdirs-1.4.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/appnope-0.1.0-py36hf537a9a_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/asdf-1.3.1.dev124-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/asn1crypto-0.23.0-py36h782d450_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/astropy-3.0.dev9235-np112py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/attrs-17.3.0-py36h9f37037_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/beautifulsoup4-4.6.0-py36h72d3c9f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/bokeh-0.12.13-py36h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/certifi-2017.11.5-py36ha569be9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cffi-1.11.2-py36hd3e6348_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/chardet-3.0.4-py36h96c241c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/click-6.7-py36hec950be_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cloudpickle-0.5.2-py36h379c7bd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/coverage-4.4.2-py36h8d5022f_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/crds-7.1.7.dev44-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cryptography-2.1.4-py36h842514c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cycler-0.10.0-py36hfc81398_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/cython-0.27.3-py36h6ecb376_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-0.16.0-py36h40f4302_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/dask-core-0.16.0-py36haa8de34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/decorator-4.1.2-py36h69a1b52_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/distributed-1.20.2-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzle-1.10.dev1-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/drizzlepac-2.1.20.dev8-py36_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsblender-0.3.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/fitsverify-4.18-3.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/gwcs-0.8rc.dev33-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/h5py-2.7.1-py36h39cdac5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/heapdict-1.0.0-py36h27a9ac6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/hypothesis-3.38.5-py36hcba0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/idna-2.6-py36h8628d0a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/imageio-2.2.0-py36h5e01289_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython-6.2.1-py36h3dda519_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ipython_genutils-0.2.0-py36h241746c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jedi-0.11.0-py36_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jinja2-2.10-py36hd36f9c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jplephem-v2.6.dev1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/jsonschema-2.6.0-py36hb385e00_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/jwst-0.9.0.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libpng-1.6.32-hd1e8b91_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxml2-2.9.4-hf05c021_6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/libxslt-1.1.29-hc208041_6.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/locket-0.2.0-py36hca03003_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lockfile-0.12.2-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/lxml-4.1.1-py36h6c891f4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/markupsafe-1.0-py36h3a1e703_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/matplotlib-2.1.1-py36h2fb3e9e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/mpmath-1.0.0-py36hf1b8295_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/msgpack-python-0.4.8-py36h46767b2_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/namedlist-1.7-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/networkx-2.0-py36hefccab9_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/nictools-1.1.3.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/nose-1.3.7-py36h73fae2b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/numpy-1.12.1-py36h8871d66_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/olefile-0.44-py36ha08bf50_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pandas-0.21.1-py36h2c08c6b_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/parsley-1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/parso-0.1.1-py36hc90e01c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/partd-0.3.8-py36hf5c4cb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pexpect-4.3.0-py36h427ab81_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/photutils-v0.4.dev29-py36_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pickleshare-0.7.4-py36hf512f8e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pillow-4.3.0-py36h96fe3d5_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pip-9.0.1-py36h1555ced_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pluggy-0.6.0-py36hb1d0581_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/prompt_toolkit-1.0.15-py36haeda067_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/psutil-5.4.1-py36h907aff9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/ptyprocess-0.5.2-py36he6521c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/py-1.5.2-py36ha69170d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pycparser-2.18-py36h724b2fc_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pygments-2.2.0-py36h240cd3f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pympler-0.5-py36hc2752d1_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pymssql-2.1.3-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyopenssl-17.5.0-py36h51e4350_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyparsing-2.2.0-py36hb281f35_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pyregion-1.1.2.dev0-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pysocks-1.6.7-py36hfa33cec_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytest-3.3.0-py36h707cbdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-3.6.4-hc167b69_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/python-dateutil-2.6.1-py36h86d2abb_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/pytools-2016.1-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pytz-2017.3-py36hf0bf824_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pywavelets-0.5.2-py36h2710a04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/pyyaml-3.12-py36h2ba1e63_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/requests-2.18.4-py36h4516966_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scikit-image-0.13.0-py36h398857d_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/scipy-1.0.0-py36h1de22e9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/semantic_version-2.6.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/setuptools-36.5.0-py36h2134326_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/simplegeneric-0.8.1-py36he5b5b09_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/six-1.11.0-py36h0e22d5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sortedcontainers-1.5.7-py36ha982688_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/sqlite-3.20.1-h7e4c145_2.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.convolve-2.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.distutils-0.3.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.image-2.2.0.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagemanip-1.1.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.imagestats-1.4.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.ndimage-0.10.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.skypac-0.9.8.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.sphere-0.2.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.stimage-0.2.1.dev0-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stsci.tools-3.4.11.dev6-py36_1.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/stwcs-1.3.2.dev8-py36_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tblib-1.3.2-py36hda67792_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/toolz-0.8.2-py36h7b95164_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/tornado-4.5.2-py36h468dda9_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/traitlets-4.3.2-py36h65bd3ce_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/urllib3-1.22-py36h68b9469_0.tar.bz2 +http://ssb.stsci.edu/astroconda-pipeline/osx-64/verhawk-0.0.2.dev0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wcwidth-0.1.7-py36h8c6ec74_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/wheel-0.30.0-py36h5eb2c71_1.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zict-0.1.3-py36h71da714_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zope-1.0-py36_0.tar.bz2 +https://ssb.stsci.edu/astroconda-pipeline/osx-64/zope.interface-4.4.3-py36h74e83c9_0.tar.bz2 diff --git a/jwstdp/0.9.x/latest-linux b/jwstdp/0.9.x/latest-linux new file mode 100644 index 0000000..8dda39c --- /dev/null +++ b/jwstdp/0.9.x/latest-linux @@ -0,0 +1,152 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/asdf-1.3.1.dev124-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/asn1crypto-0.23.0-py35h4ab26a5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/astropy-3.0.dev9235-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/attrs-17.3.0-py35h20e33bf_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/beautifulsoup4-4.6.0-py35h442a8c9_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/ca-certificates-2017.08.26-h1d4fec5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/certifi-2017.11.5-py35h9749603_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/cffi-1.11.2-py35hc7b2db7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/chardet-3.0.4-py35hb6e9ddf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/click-6.7-py35h353a69f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/cloudpickle-0.5.2-py35hbe86bc5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/coverage-4.4.2-py35h8fc71f1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/crds-7.1.7.dev44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/cryptography-2.1.4-py35hbeb2da1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/cycler-0.10.0-py35hc4d5149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/cython-0.27.3-py35h6cdc64b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/dask-0.16.0-py35hcb8ecc8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/dask-core-0.16.0-py35hfc66869_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/dbus-1.10.22-h3b5a359_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/decorator-4.1.2-py35h3a268aa_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/drizzlepac-2.1.20.dev8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/expat-2.2.5-he0dffb1_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/fontconfig-2.12.4-h88586e7_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/freetype-2.8-hab7d2ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/glib-2.53.6-h5d9569c_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/gst-plugins-base-1.12.2-he3457e5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/gstreamer-1.12.2-h4f93127_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/gwcs-0.8rc.dev33-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/h5py-2.7.1-py35h8d53cdc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/hdf5-1.10.1-h9caa474_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/heapdict-1.0.0-py35h51e6c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/hypothesis-3.38.5-py35h785bf34_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/icu-58.2-h9c2bf20_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/idna-2.6-py35h8605a33_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/imageio-2.2.0-py35hd0a6de2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/intel-openmp-2018.0.0-hc7b2577_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/ipython-6.2.1-py35hd850d2a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/ipython_genutils-0.2.0-py35hc9e07d0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/jedi-0.11.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/jinja2-2.10-py35h480ab6d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/jpeg-9b-h024ee3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/jsonschema-2.6.0-py35h4395190_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/jwst-0.9.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libedit-3.1-heed3624_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libffi-3.2.1-hd88cf55_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libgcc-ng-7.2.0-h7cc24e2_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libgfortran-ng-7.2.0-h9f7466a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libpng-1.6.32-hbd3595f_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libtiff-4.0.9-h28f6b97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libxcb-1.12-hcd93eb1_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libxml2-2.9.4-h2e8b1d7_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/libxslt-1.1.29-h78d5cac_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/locket-0.2.0-py35h170bc82_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/linux-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/lxml-4.1.1-py35ha19ceee_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/markupsafe-1.0-py35h4f4fcf6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/matplotlib-2.1.1-py35ha26af80_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/mkl-2018.0.1-h19d6760_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/mpmath-1.0.0-py35h7ce6e34_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/msgpack-python-0.4.8-py35h783f4c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/ncurses-6.0-h9df7e31_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/networkx-2.0-py35hc690e10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/nose-1.3.7-py35hdc64897_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/numpy-1.12.1-py35hca0bb5e_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/olefile-0.44-py35h2c86149_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/openssl-1.0.2n-hb7f436b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pandas-0.21.1-py35h20b78c2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/parso-0.1.1-py35h1b200a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/partd-0.3.8-py35h68187f2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pcre-8.41-hc27e229_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pexpect-4.3.0-py35hf410859_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/photutils-v0.4.dev29-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pickleshare-0.7.4-py35hd57304d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pillow-4.3.0-py35h550890c_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pip-9.0.1-py35h7e7da9d_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pluggy-0.6.0-py35hb428803_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/prompt_toolkit-1.0.15-py35hc09de7a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/psutil-5.4.1-py35h2e39a06_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/ptyprocess-0.5.2-py35h38ce0a3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/py-1.5.2-py35hfe8c5ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pycparser-2.18-py35h61b3040_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pygments-2.2.0-py35h0f41973_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pympler-0.5-py35hc09b5c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/linux-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pyopenssl-17.5.0-py35h4f8b8c8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pyparsing-2.2.0-py35h041ed72_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pyqt-5.6.0-py35h0e41ada_5.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pysocks-1.6.7-py35h6aefbb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pytest-3.3.0-py35h5c08cda_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/python-3.5.4-h417fded_24.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/python-dateutil-2.6.1-py35h90d5b31_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pytz-2017.3-py35hb13c558_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pywavelets-0.5.2-py35h53ec731_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/pyyaml-3.12-py35h46ef4ae_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/qt-5.6.2-h974d657_12.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/readline-7.0-ha6073c6_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/requests-2.18.4-py35hb9e6ad1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/scikit-image-0.13.0-py35h3573165_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/scipy-1.0.0-py35hcbbe4a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/linux-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/setuptools-36.5.0-py35ha8c1747_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/simplegeneric-0.8.1-py35h2ec4104_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/sip-4.18.1-py35h9eaea60_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/six-1.11.0-py35h423b573_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/sortedcontainers-1.5.7-py35h683703c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/sqlite-3.20.1-hb898158_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stsci.tools-3.4.11.dev6-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/stwcs-1.3.2.dev8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/tblib-1.3.2-py35hf1eb0b4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/tk-8.6.7-hc745277_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/toolz-0.8.2-py35h90f1797_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/tornado-4.5.2-py35hf879e1d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/traitlets-4.3.2-py35ha522a97_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/urllib3-1.22-py35h2ab6e29_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/linux-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/wcwidth-0.1.7-py35hcd08066_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/wheel-0.30.0-py35hd3883cf_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/xz-5.2.3-h55aa19d_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/yaml-0.1.7-had09818_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/zict-0.1.3-py35h29275ca_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/zlib-1.2.11-ha838bed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/linux-64/zope-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/linux-64/zope.interface-4.4.3-py35h9cef842_0.tar.bz2
\ No newline at end of file diff --git a/jwstdp/0.9.x/latest-osx b/jwstdp/0.9.x/latest-osx new file mode 100644 index 0000000..632dc64 --- /dev/null +++ b/jwstdp/0.9.x/latest-osx @@ -0,0 +1,144 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +@EXPLICIT +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/appdirs-1.4.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/appnope-0.1.0-py35hd172556_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/asdf-1.3.1.dev124-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/asn1crypto-0.23.0-py35ha0e154b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/astropy-3.0.dev9235-np112py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/attrs-17.3.0-py35hc219a11_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/beautifulsoup4-4.6.0-py35hb75f182_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/bokeh-0.12.13-py35h2f9c1c0_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/ca-certificates-2017.08.26-ha1e5d58_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/certifi-2017.11.5-py35hd00889a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/cffi-1.11.2-py35h5806a83_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/cfitsio-3.410-1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/chardet-3.0.4-py35h16a84c2_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/click-6.7-py35hcc65ea6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/cloudpickle-0.5.2-py35h61e9bcc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/coverage-4.4.2-py35h36907ce_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/crds-7.1.7.dev44-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/cryptography-2.1.4-py35hbbb57dc_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/cycler-0.10.0-py35hb89929e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/cython-0.27.3-py35h36d65b6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/dask-0.16.0-py35h14d4d8d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/dask-core-0.16.0-py35h83ab50f_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/decorator-4.1.2-py35hf37c5b3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/distributed-1.20.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/drizzle-1.10.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/drizzlepac-2.1.20.dev8-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/fitsblender-0.3.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/fitsverify-4.18-3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/freetds-1.00.9-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/freetype-2.8-h12048fb_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/gwcs-0.8rc.dev33-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/h5py-2.7.1-py35he1c7800_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/hdf5-1.10.1-ha036c08_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/heapdict-1.0.0-py35h86051b3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/hypothesis-3.38.5-py35h843401b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/icu-58.2-h4b95b61_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/idna-2.6-py35h01aacb0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/imageio-2.2.0-py35h805106e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/intel-openmp-2018.0.0-h8158457_8.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/ipython-6.2.1-py35h9470683_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/ipython_genutils-0.2.0-py35hf129286_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/jedi-0.11.0-py35_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/jinja2-2.10-py35h6ff70ae_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/jpeg-9b-he5867d9_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/jplephem-v2.6.dev1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/jsonschema-2.6.0-py35h2dd9e4b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/jwst-0.9.0.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libcxx-4.0.1-h579ed51_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libcxxabi-4.0.1-hebd6815_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libedit-3.1-hb4e282d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libffi-3.2.1-h475c297_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libgcc-4.8.5-hdbeacc1_10.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libgfortran-3.0.1-h93005f0_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libiconv-1.15-hdd342a3_7.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libpng-1.6.32-hd1e8b91_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libtiff-4.0.9-h0dac147_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libxml2-2.9.4-hf05c021_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/libxslt-1.1.29-hc208041_6.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/locket-0.2.0-py35h58cf053_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/osx-64/lockfile-0.12.2-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/lxml-4.1.1-py35ha60bdb6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/markupsafe-1.0-py35h9ba0a7f_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/matplotlib-2.1.1-py35h2fb3e9e_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/mkl-2018.0.1-hfbd8650_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/mpmath-1.0.0-py35he743aed_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/msgpack-python-0.4.8-py35h2751e37_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/namedlist-1.7-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/ncurses-6.0-hd04f020_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/networkx-2.0-py35hb193ae4_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/nictools-1.1.3.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/nose-1.3.7-py35h9ce1e3a_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/numpy-1.12.1-py35h655160a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/olefile-0.44-py35h1f523c6_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/openssl-1.0.2n-hdbc3d79_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pandas-0.21.1-py35h2c08c6b_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/parsley-1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/parso-0.1.1-py35hbda7c10_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/partd-0.3.8-py35h6fadee7_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pexpect-4.3.0-py35h97d68c3_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/photutils-v0.4.dev29-py35_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pickleshare-0.7.4-py35h9517181_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pillow-4.3.0-py35h4107478_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pip-9.0.1-py35h33ce766_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pluggy-0.6.0-py35hf57b818_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/prompt_toolkit-1.0.15-py35h93950c5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/psutil-5.4.1-py35h02a2b6c_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/ptyprocess-0.5.2-py35hfc37984_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/py-1.5.2-py35h4d4d87d_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pycparser-2.18-py35hab820b0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pygments-2.2.0-py35h392a662_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pympler-0.5-py35hf41ee38_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/osx-64/pymssql-2.1.3-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pyopenssl-17.5.0-py35h4065cf8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pyparsing-2.2.0-py35h31fab04_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/pyregion-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pysocks-1.6.7-py35h3cfcbe1_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pytest-3.3.0-py35hfa6e833_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/python-3.5.4-he720263_23.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/python-dateutil-2.6.1-py35h10515e0_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/pytools-2016.1-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pytz-2017.3-py35heeb7564_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pywavelets-0.5.2-py35h9dc8fb8_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/pyyaml-3.12-py35hf8cec8a_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/readline-7.0-hc1231fa_4.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/requests-2.18.4-py35h0d65e6b_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/scikit-image-0.13.0-py35hf7e7ad6_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/scipy-1.0.0-py35h8b35106_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/osx-64/semantic_version-2.6.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/setuptools-36.5.0-py35h52cde6a_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/simplegeneric-0.8.1-py35h0a3d746_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/six-1.11.0-py35h39a4c60_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/sortedcontainers-1.5.7-py35h53913a2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/sqlite-3.20.1-h7e4c145_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.convolve-2.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.distutils-0.3.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.image-2.2.0.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.imagemanip-1.1.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.imagestats-1.4.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.ndimage-0.10.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.skypac-0.9.8.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.sphere-0.2.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.stimage-0.2.1.dev0-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stsci.tools-3.4.11.dev6-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/stwcs-1.3.2.dev8-py35_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/tblib-1.3.2-py35h1b9c5fd_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/tk-8.6.7-h35a86e2_3.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/toolz-0.8.2-py35h9767fb5_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/tornado-4.5.2-py35h4099233_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/traitlets-4.3.2-py35hd3d1486_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/unixodbc-2.3.4-0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/urllib3-1.22-py35he002d57_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/astroconda-dev/osx-64/verhawk-0.0.2.dev0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/wcwidth-0.1.7-py35hdd0c235_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/wheel-0.30.0-py35h5c0b906_1.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/xz-5.2.3-h0278029_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/yaml-0.1.7-hc338f04_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/zict-0.1.3-py35h1ae85d2_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/zlib-1.2.11-hf3cbc9b_2.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/free/osx-64/zope-1.0-py35_0.tar.bz2 +https://ssb.stsci.edu/astroconda-tomb/jwstdp/0.9.x/main/osx-64/zope.interface-4.4.3-py35hdbc5dd8_0.tar.bz2
\ No newline at end of file diff --git a/jwstdp/1.0.0/README.md b/jwstdp/1.0.0/README.md new file mode 100644 index 0000000..09698a6 --- /dev/null +++ b/jwstdp/1.0.0/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.0.0 --file +https://ssb.stsci.edu/releases/jwstdp/1.0.0/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.0.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.0.0/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.0.0 --file +https://ssb.stsci.edu/releases/jwstdp/1.0.0/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.0.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.0.0/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/1.0.0/conda_python_macos-stable-deps.txt b/jwstdp/1.0.0/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..e6de57d --- /dev/null +++ b/jwstdp/1.0.0/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2021.1.19-hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1j-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20191231-h1de35cc_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.1-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.33.0-hffcf06c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.5-h26836e1_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.12.5-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-52.0.0-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-21.0.1-py38hecd8cb5_0.conda diff --git a/jwstdp/1.0.0/conda_python_stable-deps.txt b/jwstdp/1.0.0/conda_python_stable-deps.txt new file mode 100644 index 0000000..61494d6 --- /dev/null +++ b/jwstdp/1.0.0/conda_python_stable-deps.txt @@ -0,0 +1,24 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2021.1.19-h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1j-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20191231-h14c3975_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.1-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.33.0-h62c20be_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.5-h7579374_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.12.5-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-52.0.0-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-21.0.1-py38h06a4308_0.conda diff --git a/jwstdp/1.0.0/reqs_macos-stable-deps.txt b/jwstdp/1.0.0/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..8847246 --- /dev/null +++ b/jwstdp/1.0.0/reqs_macos-stable-deps.txt @@ -0,0 +1,63 @@ +apipkg==1.5 +asdf==2.7.2 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.4 +crds==10.3.8 +cycler==0.10.0 +Cython==0.29.22 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.8.4 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jsonschema==3.2.0 +jwst==1.0.0 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.4 +mccabe==0.6.1 +numpy==1.20.1 +packaging==20.9 +Parsley==1.3 +photutils==1.0.2 +Pillow==8.1.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.6.0 +pyerfa==1.7.2 +pyflakes==2.2.0 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.2 +pytest-cov==2.11.1 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.8.0 +scipy==1.6.1 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.2.0 +stpipe==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.1 +urllib3==1.26.3 diff --git a/jwstdp/1.0.0/reqs_stable-deps.txt b/jwstdp/1.0.0/reqs_stable-deps.txt new file mode 100644 index 0000000..edb3025 --- /dev/null +++ b/jwstdp/1.0.0/reqs_stable-deps.txt @@ -0,0 +1,67 @@ +apipkg==1.5 +asdf==2.7.2 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.4 +crds==10.3.8 +cycler==0.10.0 +Cython==0.29.22 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.8.4 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jplephem==2.9 +jsonschema==3.2.0 +jwst==1.0.0 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.4 +mccabe==0.6.1 +numpy==1.20.1 +packaging==20.9 +Parsley==1.3 +photutils==1.0.2 +Pillow==8.1.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.6.0 +pyerfa==1.7.2 +pyflakes==2.2.0 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.2 +pytest-cov==2.11.1 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-sugar==0.9.4 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.8.0 +scipy==1.6.1 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.2.0 +stpipe==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +termcolor==1.1.0 +toml==0.10.2 +tweakwcs==0.7.1 +urllib3==1.26.3 diff --git a/jwstdp/1.1.0/README.md b/jwstdp/1.1.0/README.md new file mode 100644 index 0000000..f0ce47d --- /dev/null +++ b/jwstdp/1.1.0/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.1.0 --file +https://ssb.stsci.edu/releases/jwstdp/1.1.0/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.1.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.1.0/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.1.0 --file +https://ssb.stsci.edu/releases/jwstdp/1.1.0/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.1.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.1.0/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/1.1.0/conda_python_macos-stable-deps.txt b/jwstdp/1.1.0/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..757e014 --- /dev/null +++ b/jwstdp/1.1.0/conda_python_macos-stable-deps.txt @@ -0,0 +1,21 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2021.1.19-hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1j-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/libedit-3.1.20191231-h1de35cc_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.1-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.33.0-hffcf06c_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.8-h88f2d9e_4.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.12.5-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-52.0.0-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-21.0.1-py38hecd8cb5_0.conda diff --git a/jwstdp/1.1.0/conda_python_stable-deps.txt b/jwstdp/1.1.0/conda_python_stable-deps.txt new file mode 100644 index 0000000..87faa3a --- /dev/null +++ b/jwstdp/1.1.0/conda_python_stable-deps.txt @@ -0,0 +1,24 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2021.1.19-h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1j-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20191231-h14c3975_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.1-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.33.0-h62c20be_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.8-hdb3f193_4.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.12.5-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-52.0.0-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-21.0.1-py38h06a4308_0.conda diff --git a/jwstdp/1.1.0/reqs_macos-stable-deps.txt b/jwstdp/1.1.0/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..895ae80 --- /dev/null +++ b/jwstdp/1.1.0/reqs_macos-stable-deps.txt @@ -0,0 +1,63 @@ +apipkg==1.5 +asdf==2.7.3 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.4 +crds==10.3.8 +cycler==0.10.0 +Cython==0.29.22 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.8.4 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jsonschema==3.2.0 +jwst==1.1.0 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.4 +mccabe==0.6.1 +numpy==1.20.1 +packaging==20.9 +Parsley==1.3 +photutils==1.0.2 +Pillow==8.1.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.6.0 +pyerfa==1.7.2 +pyflakes==2.2.0 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.2 +pytest-cov==2.11.1 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.8.0 +scipy==1.6.1 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.2.0 +stpipe==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.1 +urllib3==1.26.3 diff --git a/jwstdp/1.1.0/reqs_stable-deps.txt b/jwstdp/1.1.0/reqs_stable-deps.txt new file mode 100644 index 0000000..9a7934e --- /dev/null +++ b/jwstdp/1.1.0/reqs_stable-deps.txt @@ -0,0 +1,67 @@ +apipkg==1.5 +asdf==2.7.3 +astropy==4.2 +attrs==20.3.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.4 +crds==10.3.8 +cycler==0.10.0 +Cython==0.29.22 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.8.4 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +iniconfig==1.1.1 +jplephem==2.9 +jsonschema==3.2.0 +jwst==1.1.0 +kiwisolver==1.3.1 +lxml==4.6.2 +matplotlib==3.3.4 +mccabe==0.6.1 +numpy==1.20.1 +packaging==20.9 +Parsley==1.3 +photutils==1.0.2 +Pillow==8.1.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.6.0 +pyerfa==1.7.2 +pyflakes==2.2.0 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.2 +pytest-cov==2.11.1 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-sugar==0.9.4 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.8.0 +scipy==1.6.1 +semantic-version==2.8.5 +six==1.15.0 +spherical-geometry==1.2.19 +stdatamodels==0.2.0 +stpipe==0.1.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +termcolor==1.1.0 +toml==0.10.2 +tweakwcs==0.7.1 +urllib3==1.26.3 diff --git a/jwstdp/1.2.0/README.md b/jwstdp/1.2.0/README.md new file mode 100644 index 0000000..4a8c454 --- /dev/null +++ b/jwstdp/1.2.0/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.2.0 --file +https://ssb.stsci.edu/releases/jwstdp/1.2.0/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.2.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.2.0/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.2.0 --file +https://ssb.stsci.edu/releases/jwstdp/1.2.0/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.2.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.2.0/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/1.2.0/conda_python_macos-stable-deps.txt b/jwstdp/1.2.0/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..98b16df --- /dev/null +++ b/jwstdp/1.2.0/conda_python_macos-stable-deps.txt @@ -0,0 +1,20 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2021.4.13-hecd8cb5_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1k-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.1-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.35.4-hce871da_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.10-h88f2d9e_7.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2020.12.5-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-52.0.0-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-21.1.1-py38hecd8cb5_0.conda diff --git a/jwstdp/1.2.0/conda_python_stable-deps.txt b/jwstdp/1.2.0/conda_python_stable-deps.txt new file mode 100644 index 0000000..14af1ab --- /dev/null +++ b/jwstdp/1.2.0/conda_python_stable-deps.txt @@ -0,0 +1,23 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2021.4.13-h06a4308_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1k-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.1-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.35.4-hdfb4753_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.10-hdb3f193_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2020.12.5-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-52.0.0-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-21.1.1-py38h06a4308_0.conda diff --git a/jwstdp/1.2.0/reqs_macos-stable-deps.txt b/jwstdp/1.2.0/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..ffc476f --- /dev/null +++ b/jwstdp/1.2.0/reqs_macos-stable-deps.txt @@ -0,0 +1,66 @@ +apipkg==1.5 +asdf==2.8.0 +astropy==4.2.1 +attrs==21.2.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.5 +crds==11.0.1 +cycler==0.10.0 +Cython==0.29.23 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.9.2 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +importlib-resources==5.1.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jsonschema==3.2.0 +jwst==1.2.0 +kiwisolver==1.3.1 +lxml==4.6.3 +matplotlib==3.4.2 +mccabe==0.6.1 +numpy==1.20.3 +packaging==20.9 +Parsley==1.3 +photutils==1.1.0 +Pillow==8.2.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.7.0 +pyerfa==2.0.0 +pyflakes==2.3.1 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.4 +pytest-cov==2.12.0 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.9.2 +scipy==1.6.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.20 +stcal==0.2.1 +stdatamodels==0.2.1 +stpipe==0.2.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.2 +urllib3==1.26.4 diff --git a/jwstdp/1.2.0/reqs_stable-deps.txt b/jwstdp/1.2.0/reqs_stable-deps.txt new file mode 100644 index 0000000..d52a446 --- /dev/null +++ b/jwstdp/1.2.0/reqs_stable-deps.txt @@ -0,0 +1,68 @@ +apipkg==1.5 +asdf==2.8.0 +astropy==4.2.1 +attrs==21.2.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.5 +crds==11.0.1 +cycler==0.10.0 +Cython==0.29.23 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.9.2 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +importlib-resources==5.1.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst==1.2.0 +kiwisolver==1.3.1 +lxml==4.6.3 +matplotlib==3.4.2 +mccabe==0.6.1 +numpy==1.20.3 +packaging==20.9 +Parsley==1.3 +photutils==1.1.0 +Pillow==8.2.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.7.0 +pyerfa==2.0.0 +pyflakes==2.3.1 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.4 +pytest-cov==2.12.0 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.9.2 +scipy==1.6.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.20 +stcal==0.2.1 +stdatamodels==0.2.1 +stpipe==0.2.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.2 +urllib3==1.26.4 diff --git a/jwstdp/1.2.1/README.md b/jwstdp/1.2.1/README.md new file mode 100644 index 0000000..58455cd --- /dev/null +++ b/jwstdp/1.2.1/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.2.1 --file +https://ssb.stsci.edu/releases/jwstdp/1.2.1/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.2.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.2.1/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.2.1 --file +https://ssb.stsci.edu/releases/jwstdp/1.2.1/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.2.1 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.2.1/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/1.2.1/conda_python_macos-stable-deps.txt b/jwstdp/1.2.1/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..c88de61 --- /dev/null +++ b/jwstdp/1.2.1/conda_python_macos-stable-deps.txt @@ -0,0 +1,20 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2021.5.25-hecd8cb5_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1k-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.1-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.35.4-hce871da_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.10-h88f2d9e_7.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2021.5.30-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-52.0.0-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-21.1.1-py38hecd8cb5_0.conda diff --git a/jwstdp/1.2.1/conda_python_stable-deps.txt b/jwstdp/1.2.1/conda_python_stable-deps.txt new file mode 100644 index 0000000..f772874 --- /dev/null +++ b/jwstdp/1.2.1/conda_python_stable-deps.txt @@ -0,0 +1,23 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2021.5.25-h06a4308_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1k-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.1-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.35.4-hdfb4753_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.10-hdb3f193_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2021.5.30-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-52.0.0-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-21.1.1-py38h06a4308_0.conda diff --git a/jwstdp/1.2.1/reqs_macos-stable-deps.txt b/jwstdp/1.2.1/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..6272b42 --- /dev/null +++ b/jwstdp/1.2.1/reqs_macos-stable-deps.txt @@ -0,0 +1,66 @@ +apipkg==1.5 +asdf==2.8.0 +astropy==4.2.1 +attrs==21.2.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.5 +crds==11.0.1 +cycler==0.10.0 +Cython==0.29.23 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.9.2 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +importlib-resources==5.1.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jsonschema==3.2.0 +jwst==1.2.1 +kiwisolver==1.3.1 +lxml==4.6.3 +matplotlib==3.4.2 +mccabe==0.6.1 +numpy==1.20.3 +packaging==20.9 +Parsley==1.3 +photutils==1.1.0 +Pillow==8.2.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.7.0 +pyerfa==2.0.0 +pyflakes==2.3.1 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.4 +pytest-cov==2.12.0 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.9.2 +scipy==1.6.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.20 +stcal==0.2.1 +stdatamodels==0.2.1 +stpipe==0.2.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.2 +urllib3==1.26.4 diff --git a/jwstdp/1.2.1/reqs_stable-deps.txt b/jwstdp/1.2.1/reqs_stable-deps.txt new file mode 100644 index 0000000..ae305ce --- /dev/null +++ b/jwstdp/1.2.1/reqs_stable-deps.txt @@ -0,0 +1,68 @@ +apipkg==1.5 +asdf==2.8.0 +astropy==4.2.1 +attrs==21.2.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.5 +crds==11.0.1 +cycler==0.10.0 +Cython==0.29.23 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.9.2 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +importlib-resources==5.1.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst==1.2.1 +kiwisolver==1.3.1 +lxml==4.6.3 +matplotlib==3.4.2 +mccabe==0.6.1 +numpy==1.20.3 +packaging==20.9 +Parsley==1.3 +photutils==1.1.0 +Pillow==8.2.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.7.0 +pyerfa==2.0.0 +pyflakes==2.3.1 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.4 +pytest-cov==2.12.0 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.9.2 +scipy==1.6.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.20 +stcal==0.2.1 +stdatamodels==0.2.1 +stpipe==0.2.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.2 +urllib3==1.26.4 diff --git a/jwstdp/1.2.2/README.md b/jwstdp/1.2.2/README.md new file mode 100644 index 0000000..b14699b --- /dev/null +++ b/jwstdp/1.2.2/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.2.2 --file +https://ssb.stsci.edu/releases/jwstdp/1.2.2/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.2.2 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.2.2/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.2.2 --file +https://ssb.stsci.edu/releases/jwstdp/1.2.2/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.2.2 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.2.2/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/1.2.2/conda_python_macos-stable-deps.txt b/jwstdp/1.2.2/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..c88de61 --- /dev/null +++ b/jwstdp/1.2.2/conda_python_macos-stable-deps.txt @@ -0,0 +1,20 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2021.5.25-hecd8cb5_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1k-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.1-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.35.4-hce871da_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.10-h88f2d9e_7.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2021.5.30-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-52.0.0-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-21.1.1-py38hecd8cb5_0.conda diff --git a/jwstdp/1.2.2/conda_python_stable-deps.txt b/jwstdp/1.2.2/conda_python_stable-deps.txt new file mode 100644 index 0000000..f772874 --- /dev/null +++ b/jwstdp/1.2.2/conda_python_stable-deps.txt @@ -0,0 +1,23 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2021.5.25-h06a4308_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1k-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.1-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.35.4-hdfb4753_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.10-hdb3f193_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2021.5.30-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-52.0.0-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-21.1.1-py38h06a4308_0.conda diff --git a/jwstdp/1.2.2/reqs_macos-stable-deps.txt b/jwstdp/1.2.2/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..bf9a6c5 --- /dev/null +++ b/jwstdp/1.2.2/reqs_macos-stable-deps.txt @@ -0,0 +1,66 @@ +apipkg==1.5 +asdf==2.8.0 +astropy==4.2.1 +attrs==21.2.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.5 +crds==11.0.1 +cycler==0.10.0 +Cython==0.29.23 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.9.2 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +importlib-resources==5.1.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jsonschema==3.2.0 +jwst==1.2.2 +kiwisolver==1.3.1 +lxml==4.6.3 +matplotlib==3.4.2 +mccabe==0.6.1 +numpy==1.20.3 +packaging==20.9 +Parsley==1.3 +photutils==1.1.0 +Pillow==8.2.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.7.0 +pyerfa==2.0.0 +pyflakes==2.3.1 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.4 +pytest-cov==2.12.0 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.9.2 +scipy==1.6.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.20 +stcal==0.2.1 +stdatamodels==0.2.1 +stpipe==0.2.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.2 +urllib3==1.26.4 diff --git a/jwstdp/1.2.2/reqs_stable-deps.txt b/jwstdp/1.2.2/reqs_stable-deps.txt new file mode 100644 index 0000000..b3f73fa --- /dev/null +++ b/jwstdp/1.2.2/reqs_stable-deps.txt @@ -0,0 +1,68 @@ +apipkg==1.5 +asdf==2.8.0 +astropy==4.2.1 +attrs==21.2.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.5 +crds==11.0.1 +cycler==0.10.0 +Cython==0.29.23 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.9.2 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +importlib-resources==5.1.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst==1.2.2 +kiwisolver==1.3.1 +lxml==4.6.3 +matplotlib==3.4.2 +mccabe==0.6.1 +numpy==1.20.3 +packaging==20.9 +Parsley==1.3 +photutils==1.1.0 +Pillow==8.2.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.7.0 +pyerfa==2.0.0 +pyflakes==2.3.1 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.4 +pytest-cov==2.12.0 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.9.2 +scipy==1.6.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.20 +stcal==0.2.1 +stdatamodels==0.2.1 +stpipe==0.2.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.2 +urllib3==1.26.4 diff --git a/jwstdp/1.2.3/README.md b/jwstdp/1.2.3/README.md new file mode 100644 index 0000000..99dba1e --- /dev/null +++ b/jwstdp/1.2.3/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.2.3 --file +https://ssb.stsci.edu/releases/jwstdp/1.2.3/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.2.3 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.2.3/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.2.3 --file +https://ssb.stsci.edu/releases/jwstdp/1.2.3/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.2.3 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.2.3/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/1.2.3/conda_python_macos-stable-deps.txt b/jwstdp/1.2.3/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..c88de61 --- /dev/null +++ b/jwstdp/1.2.3/conda_python_macos-stable-deps.txt @@ -0,0 +1,20 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2021.5.25-hecd8cb5_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1k-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.1-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.35.4-hce871da_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.10-h88f2d9e_7.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2021.5.30-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-52.0.0-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-21.1.1-py38hecd8cb5_0.conda diff --git a/jwstdp/1.2.3/conda_python_stable-deps.txt b/jwstdp/1.2.3/conda_python_stable-deps.txt new file mode 100644 index 0000000..f772874 --- /dev/null +++ b/jwstdp/1.2.3/conda_python_stable-deps.txt @@ -0,0 +1,23 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2021.5.25-h06a4308_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.33.1-h53a641e_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.1.0-hdf63c60_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1k-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.1-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.35.4-hdfb4753_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.10-hdb3f193_7.conda +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2021.5.30-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-52.0.0-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-21.1.1-py38h06a4308_0.conda diff --git a/jwstdp/1.2.3/reqs_macos-stable-deps.txt b/jwstdp/1.2.3/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..4af7811 --- /dev/null +++ b/jwstdp/1.2.3/reqs_macos-stable-deps.txt @@ -0,0 +1,66 @@ +apipkg==1.5 +asdf==2.8.0 +astropy==4.2.1 +attrs==21.2.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.5 +crds==11.0.1 +cycler==0.10.0 +Cython==0.29.23 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.9.2 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +importlib-resources==5.1.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jsonschema==3.2.0 +jwst==1.2.3 +kiwisolver==1.3.1 +lxml==4.6.3 +matplotlib==3.4.2 +mccabe==0.6.1 +numpy==1.20.3 +packaging==20.9 +Parsley==1.3 +photutils==1.1.0 +Pillow==8.2.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.7.0 +pyerfa==2.0.0 +pyflakes==2.3.1 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.4 +pytest-cov==2.12.0 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.9.2 +scipy==1.6.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.20 +stcal==0.2.1 +stdatamodels==0.2.1 +stpipe==0.2.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.2 +urllib3==1.26.4 diff --git a/jwstdp/1.2.3/reqs_stable-deps.txt b/jwstdp/1.2.3/reqs_stable-deps.txt new file mode 100644 index 0000000..d38928f --- /dev/null +++ b/jwstdp/1.2.3/reqs_stable-deps.txt @@ -0,0 +1,68 @@ +apipkg==1.5 +asdf==2.8.0 +astropy==4.2.1 +attrs==21.2.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.5 +crds==11.0.1 +cycler==0.10.0 +Cython==0.29.23 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.9.2 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +importlib-resources==5.1.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst==1.2.3 +kiwisolver==1.3.1 +lxml==4.6.3 +matplotlib==3.4.2 +mccabe==0.6.1 +numpy==1.20.3 +packaging==20.9 +Parsley==1.3 +photutils==1.1.0 +Pillow==8.2.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.7.0 +pyerfa==2.0.0 +pyflakes==2.3.1 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.4 +pytest-cov==2.12.0 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.9.2 +scipy==1.6.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.20 +stcal==0.2.1 +stdatamodels==0.2.1 +stpipe==0.2.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.2 +urllib3==1.26.4 diff --git a/jwstdp/1.3.0/README.md b/jwstdp/1.3.0/README.md new file mode 100644 index 0000000..fad87d0 --- /dev/null +++ b/jwstdp/1.3.0/README.md @@ -0,0 +1,74 @@ +# Installing the tested pipeline stack + +Conda (miniconda3 or anaconda3) must already be installed, if it is not, +'Advance Setup' below. +All steps must be performed in bash or a compatible shell. + +A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP +release. The method described here allows for multiple, entirely segregated, +pipeline installations. + +## Linux +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.3.0 --file +https://ssb.stsci.edu/releases/jwstdp/1.3.0/conda_python_stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.3.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.3.0/reqs_stable-deps.txt +``` + +## Macos +To reproduce the environment used during JWST prerelease testing on Linux, a +three-step installation process is required. + +1) Install the target python interpreter and its dependencies using conda, then +``` +$ conda create -n jwstdp-1.3.0 --file +https://ssb.stsci.edu/releases/jwstdp/1.3.0/conda_python_macos-stable-deps.txt +``` + +2) Activate the environment +``` +$ source activate jwstdp-1.3.0 +``` + +3) Install the pipeline software packages on top using `pip`: +``` +$ pip install -r https://ssb.stsci.edu/releases/jwstdp/1.3.0/reqs_macos-stable-deps.txt +``` + +# Advance setup + +If conda has not yet been installed, use the following steps to obtain +it, then use the procedure above to install the pipeline software. + +For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install + +**For Miniconda:** + +``` +$ wget +https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh +$ bash Miniconda3-Latest-Linux-x86_64.sh +$ export PATH=$HOME/miniconda3/bin:$PATH +``` + +**For Anaconda (if preferred):** + +``` +$ wget +https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh +$ bash Anaconda3-2019.10-Linux-x86_64.sh +$ export PATH=$HOME/anaconda3/bin:$PATH +``` diff --git a/jwstdp/1.3.0/conda_python_macos-stable-deps.txt b/jwstdp/1.3.0/conda_python_macos-stable-deps.txt new file mode 100644 index 0000000..4288334 --- /dev/null +++ b/jwstdp/1.3.0/conda_python_macos-stable-deps.txt @@ -0,0 +1,20 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: osx-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/osx-64/ca-certificates-2021.7.5-hecd8cb5_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/libcxx-10.0.0-1.conda +https://repo.anaconda.com/pkgs/main/osx-64/xz-5.2.5-h1de35cc_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/zlib-1.2.11-h1de35cc_3.conda +https://repo.anaconda.com/pkgs/main/osx-64/libffi-3.3-hb1e8313_2.conda +https://repo.anaconda.com/pkgs/main/osx-64/ncurses-6.2-h0a44026_1.conda +https://repo.anaconda.com/pkgs/main/osx-64/openssl-1.1.1k-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/tk-8.6.10-hb0a8c7a_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/readline-8.1-h9ed2024_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/sqlite-3.36.0-hce871da_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/python-3.8.10-h88f2d9e_7.conda +https://repo.anaconda.com/pkgs/main/osx-64/certifi-2021.5.30-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/setuptools-52.0.0-py38hecd8cb5_0.conda +https://repo.anaconda.com/pkgs/main/osx-64/pip-21.1.3-py38hecd8cb5_0.conda diff --git a/jwstdp/1.3.0/conda_python_stable-deps.txt b/jwstdp/1.3.0/conda_python_stable-deps.txt new file mode 100644 index 0000000..933a81b --- /dev/null +++ b/jwstdp/1.3.0/conda_python_stable-deps.txt @@ -0,0 +1,25 @@ +# This file may be used to create an environment using: +# $ conda create --name <env> --file <this file> +# platform: linux-64 +# conda version: 4.9.2 +@EXPLICIT +https://repo.anaconda.com/pkgs/main/linux-64/_libgcc_mutex-0.1-main.conda +https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2021.7.5-h06a4308_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.35.1-h7274673_9.conda +https://repo.anaconda.com/pkgs/main/linux-64/libstdcxx-ng-9.3.0-hd4cf53a_17.conda +https://repo.anaconda.com/pkgs/main/linux-64/libgomp-9.3.0-h5101ec6_17.conda +https://repo.anaconda.com/pkgs/main/linux-64/_openmp_mutex-4.5-1_gnu.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/libgcc-ng-9.3.0-h5101ec6_17.conda +https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.3-he6710b0_2.conda +https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.2-he6710b0_1.conda +https://repo.anaconda.com/pkgs/main/linux-64/openssl-1.1.1k-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/xz-5.2.5-h7b6447c_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.11-h7b6447c_3.conda +https://repo.anaconda.com/pkgs/main/linux-64/readline-8.1-h27cfd23_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.10-hbc83047_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.36.0-hc218d9a_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/python-3.8.10-h12debd9_8.tar.bz2 +https://repo.anaconda.com/pkgs/main/linux-64/certifi-2021.5.30-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/noarch/wheel-0.36.2-pyhd3eb1b0_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/setuptools-52.0.0-py38h06a4308_0.conda +https://repo.anaconda.com/pkgs/main/linux-64/pip-21.1.3-py38h06a4308_0.conda diff --git a/jwstdp/1.3.0/reqs_macos-stable-deps.txt b/jwstdp/1.3.0/reqs_macos-stable-deps.txt new file mode 100644 index 0000000..51d87f7 --- /dev/null +++ b/jwstdp/1.3.0/reqs_macos-stable-deps.txt @@ -0,0 +1,66 @@ +apipkg==1.5 +asdf==2.8.0 +astropy==4.2.1 +attrs==21.2.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.5 +crds==11.0.1 +cycler==0.10.0 +Cython==0.29.23 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.9.2 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +importlib-resources==5.1.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jsonschema==3.2.0 +jwst==1.3.0 +kiwisolver==1.3.1 +lxml==4.6.3 +matplotlib==3.4.2 +mccabe==0.6.1 +numpy==1.20.3 +packaging==20.9 +Parsley==1.3 +photutils==1.1.0 +Pillow==8.2.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.7.0 +pyerfa==2.0.0 +pyflakes==2.3.1 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.4 +pytest-cov==2.12.0 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.9.2 +scipy==1.6.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.20 +stcal==0.2.1 +stdatamodels==0.2.1 +stpipe==0.2.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.2 +urllib3==1.26.4 diff --git a/jwstdp/1.3.0/reqs_stable-deps.txt b/jwstdp/1.3.0/reqs_stable-deps.txt new file mode 100644 index 0000000..066f774 --- /dev/null +++ b/jwstdp/1.3.0/reqs_stable-deps.txt @@ -0,0 +1,68 @@ +apipkg==1.5 +asdf==2.8.0 +astropy==4.2.1 +attrs==21.2.0 +certifi==2020.12.5 +chardet==4.0.0 +ci-watson==0.5 +codecov==2.1.11 +colorama==0.4.4 +coverage==5.5 +crds==11.0.1 +cycler==0.10.0 +Cython==0.29.23 +drizzle==1.13.1 +execnet==1.8.0 +filelock==3.0.12 +flake8==3.9.2 +getch==1.0 +gwcs==0.16.1 +idna==2.10 +importlib-resources==5.1.3 +iniconfig==1.1.1 +jmespath==0.10.0 +jplephem==2.9 +jsonschema==3.2.0 +jwst==1.3.0 +kiwisolver==1.3.1 +lxml==4.6.3 +matplotlib==3.4.2 +mccabe==0.6.1 +numpy==1.20.3 +packaging==20.9 +Parsley==1.3 +photutils==1.1.0 +Pillow==8.2.0 +pluggy==0.13.1 +poppy==0.9.2 +psutil==5.8.0 +py==1.10.0 +pycodestyle==2.7.0 +pyerfa==2.0.0 +pyflakes==2.3.1 +pymssql-linux==2.1.6 +pyparsing==2.4.7 +pyrsistent==0.17.3 +pytest==6.2.4 +pytest-cov==2.12.0 +pytest-doctestplus==0.9.0 +pytest-forked==1.3.0 +pytest-openfiles==0.5.0 +pytest-xdist==2.2.1 +python-dateutil==2.8.1 +PyYAML==5.4.1 +requests==2.25.1 +requests-mock==1.9.2 +scipy==1.6.3 +semantic-version==2.8.5 +six==1.16.0 +spherical-geometry==1.2.20 +stcal==0.2.1 +stdatamodels==0.2.1 +stpipe==0.2.0 +stsci.image==2.3.3 +stsci.imagestats==1.6.2 +stsci.stimage==0.2.4 +toml==0.10.2 +tweakwcs==0.7.2 +urllib3==1.26.4 diff --git a/jwstdp/utils/archive_cal_code.sh b/jwstdp/utils/archive_cal_code.sh new file mode 100755 index 0000000..d41372b --- /dev/null +++ b/jwstdp/utils/archive_cal_code.sh @@ -0,0 +1,71 @@ +#!/usr/bin/env bash + +# A tool for generating a JWST CAL software tarball and the associated +# project code linecount summary and depositing it into the provided +# archival area. + +if [[ $# -eq 0 ]]; +then + printf "\nUsage:\n" + printf "$(basename $0) <jwst-tag> <destination-base-path>\n\n" + exit 0 +fi + +if [[ $1 == '' ]]; +then + echo "JWST repository tag is required" + exit 1 +fi +tag=$1 + +if [[ $2 == '' ]]; +then + echo "Destination root directory is required" + exit 1 +fi +dest_root=$2 # dms_x.y(.z) + +code_dest_path=${dest_root}/software_bundles +doc_dest_path=${dest_root}/code_counts +if [[ ! -d $code_dest_path ]]; +then + echo "${code_dest_path} does not exist!" + exit 1 +fi +if [[ ! -d $doc_dest_path ]]; +then + echo "${doc_dest_path} does not exist!" + exit 1 +fi + +which sloccount +if [[ $? -ne 0 ]]; +then + echo "'sloccount' not found. Install before attempting again." + exit 1 +fi +which csplit +if [[ $? -ne 0 ]]; +then + echo "'csplit' not found. Install before attempting again." + exit 1 +fi + +set -e + +local_checkout_dir=jwst-cal-archive +git clone https://github.com/stsci-jwst/jwst.git $local_checkout_dir +pushd $local_checkout_dir +git checkout $tag + +# Create the line count summary. Strip off any superfluous leading text to +# leave only the report data itself. +countname="jwst-${tag}-sloccount.txt" +sloccount . > temp.txt 2>&1 +csplit --digits=0 --prefix $countname temp.txt %SLOC% +mv ${countname}0 ${countname} + +python setup.py sdist + +cp -a dist/jwst-${tag}.tar.gz ${code_dest_path} +cp -a $countname ${doc_dest_path} diff --git a/jwstdp/utils/credential_helper.sh b/jwstdp/utils/credential_helper.sh new file mode 100755 index 0000000..1e69279 --- /dev/null +++ b/jwstdp/utils/credential_helper.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +echo username=$USERNAME +echo password=$PASSWORD diff --git a/jwstdp/utils/jwst_delivery_prep b/jwstdp/utils/jwst_delivery_prep new file mode 100755 index 0000000..8183eff --- /dev/null +++ b/jwstdp/utils/jwst_delivery_prep @@ -0,0 +1,205 @@ +#!/usr/bin/env python3 + +# Collects environment snapshot files from the internal artifactory instance +# at https://bytesalad.stsci.edu for a successful JWST regression test (RT) +# run, and stores them in a new release directory in a clone of the releases +# repository along with a descriptive README file as part of a JWSTDP +# environment delivery process. + +import os +import sys +import argparse +import subprocess as sp +from urllib import request +import re +import configparser + + +def modify_dep(line, text, jwstpip=True): + '''Replace value appearing after the last '@' in the pip + spec line for the 'jwst' package with the provided text.''' + line = line.strip() + # Determine type of pip dependency spec + if line[0:2] == '-e': + print('editable install dependency spec') + if line[0:4] == 'jwst': + if jwstpip: + line = f'jwst=={text}' + else: + delim = line.rfind('@') + line = line[:delim+1] + line = line + text + return(line) + + +def get_artifact_names(url, prefixes): + '''Retrieve list of all available artifacts in the target artifactory + repository.''' + names = [] + req = request.Request(url) + result = request.urlopen(req) + payload = result.readlines() + for line in payload: + line = str(line.decode()) + for prefix in prefixes: + if prefix in line: + mat = re.search('(?<=").*(?=\")', line) + names.append(mat.group(0)) + return(names) + + +def write_readme(release_tag, config_map, filename): + ''' Write a descriptive README.md file customized for this release.''' + with open(filename, 'w') as f: + f.write(("# Installing the tested pipeline stack\n" + "\n" + "Conda (miniconda3 or anaconda3) must already be installed, if it is not,\n" + "'Advance Setup' below.\n" + "All steps must be performed in bash or a compatible shell.\n" + "\n" + "A fresh installation of Anaconda3 or Miniconda3 is not required for each JWSTDP\n" + "release. The method described here allows for multiple, entirely segregated,\n" + "pipeline installations.\n" + "\n")) + + for cset in config_map: + procedure = (f"## {cset.os}\n" + f"To reproduce the environment used during JWST prerelease testing on Linux, a \n" + f"three-step installation process is required.\n" + f"\n" + f"1) Install the target python interpreter and its dependencies using conda, then\n" + f"```\n" + f"$ conda create -n jwstdp-{release_tag} --file\n" + f"https://ssb.stsci.edu/releases/jwstdp/{release_tag}/conda_python_{cset.config}.txt\n" + f"```\n" + f"\n" + f"2) Activate the environment\n" + f"```\n" + f"$ source activate jwstdp-{release_tag}\n" + f"```\n" + f"\n" + f"3) Install the pipeline software packages on top using `pip`:\n" + f"```\n" + f"$ pip install -r https://ssb.stsci.edu/releases/jwstdp/{release_tag}/reqs_{cset.config}.txt\n" + f"```\n" + f"\n") + f.write(procedure) + + f.write("# Advance setup\n" + " \n" + "If conda has not yet been installed, use the following steps to obtain\n" + "it, then use the procedure above to install the pipeline software.\n" + "\n" + "For detailed instructions of this step, please visit: http://docs.continuum.io/anaconda/install#linux-install\n" + "\n" + "**For Miniconda:**\n" + "\n" + "```\n" + "$ wget\n" + "https://repo.continuum.io/miniconda/Miniconda3-Latest-Linux-x86_64.sh\n" + "$ bash Miniconda3-Latest-Linux-x86_64.sh\n" + "$ export PATH=$HOME/miniconda3/bin:$PATH\n" + "```\n" + "\n" + "**For Anaconda (if preferred):**\n" + "\n" + "```\n" + "$ wget\n" + "https://repo.continuum.io/archive/Anaconda3-2019.10-Linux-x86_64.sh\n" + "$ bash Anaconda3-2019.10-Linux-x86_64.sh\n" + "$ export PATH=$HOME/anaconda3/bin:$PATH\n" + "```\n") + + +def main(): + ap = argparse.ArgumentParser( + prog='jwst_pipeline_deliver', + description='Modify regression test environment snapshot artifacts' + ' to reflect a stable release tag for all supported OSs, compose ' + 'a descriptive readme file, and store delivery files in a new ' + 'release directory within the repository holding this script.') + ap.add_argument('--tag', + '-t', + type=str, + required=True, + help='Tag used for the target release of the JWST package.') + ap.add_argument('--config', + '-c', + required=False, + help='Parameters file for configuring the behavior of this' + ' script. If this flag is not used, the default config ' + 'file name "params.cfg" in the same directory as the ' + 'script will be read.') + ap.add_argument('build_names', + help='BuildConfig names for which artifacts will be ' + 'collected', + nargs='+') + args = ap.parse_args() + + if len(args.build_names) == 0: + print('One or more build names are required as argument.') + sys.exit(1) + + scriptdir = sys.path[0] + + configfile = args.config + if configfile is None: + configfile = 'params.cfg' + + config = configparser.ConfigParser() + config.read(os.path.join(scriptdir, configfile)) + artifact_prefixes = config['main']['artifact_prefixes'].split() + art_url_base = config['main']['art_url_base'] + art_repo = config['main']['art_repo'] + + release_tag = args.tag + + # Crete new release directory + reldir = f'{scriptdir}/../{release_tag}' + os.mkdir(reldir) + + startdir = os.getcwd() + os.chdir(reldir) + + config_map = [] + from collections import namedtuple + confset = namedtuple('confset', ['config', 'os']) + artifacts = get_artifact_names( + f'{art_url_base}/{art_repo}', + artifact_prefixes) + + # Download only the available artifacts that correspond to the + # requested build name into new release dir. + for config in args.build_names: + for artifact in artifacts: + for prefix in artifact_prefixes: + if artifact == prefix+config+'.txt': + aurl = f'{art_url_base}/{art_repo}/{artifact}' + req = request.Request(aurl) + result = request.urlopen(req) + payload = result.readlines() + + # Determine OS of artifact and map to config name. + if 'linux-64' in str(payload[-1]): + cset = confset(config=config, os='Linux') + config_map.append(cset) + if 'osx-64' in str(payload[-1]): + cset = confset(config=config, os='Macos') + config_map.append(cset) + + # Replace jwst URL git hash with release tag name + with open(artifact, 'w') as f: + for line in payload: + line = str(line.decode()) + line = modify_dep(line, release_tag) + f.write(f'{line}\n') + + write_readme(release_tag, config_map, 'README.md') + + # Output the build_config to OS mappings. + for cset in config_map: + print(f"{cset.config}:{cset.os}") + +if __name__ == '__main__': + main() + diff --git a/jwstdp/utils/params.cfg b/jwstdp/utils/params.cfg new file mode 100644 index 0000000..3cca334 --- /dev/null +++ b/jwstdp/utils/params.cfg @@ -0,0 +1,4 @@ +[main] +artifact_prefixes = conda_python_ reqs_ +art_url_base = https://bytesalad.stsci.edu/artifactory +art_repo = jwst-pipeline-results |